* {
    font-family: "Inter", "Roboto", "Helvetica", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    box-sizing: border-box;
    background: none;
    font-family: inherit;
    background-color: #f4f4f4;
    margin: 0;
    justify-content: center; /* Centra horizontalmente */

}
/* Estilos globales para enlaces */
a {
    text-decoration: none;
    color: #3498db;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Estilos globales para botones */
button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #007BFF, #0056b3); /* Azul moderno */
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 255, 0.2); /* Sombra azul */
    margin-top: 20px;
}

button:hover {
    background: linear-gradient(135deg, #008CBA, #005F8A); /* Azul más vibrante */
    box-shadow: 0px 6px 12px rgba(0, 0, 255, 0.3); /* Sombra más pronunciada */
    transform: scale(1.05); /* Efecto de crecimiento */
}

button:active {
    transform: scale(0.95); /* Efecto de presión */
}


button:active {
    transform: scale(0.95);
}
.container {
    display: flex;
    width: 100%;
    margin: 20px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: center;
}
.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 20px;
    min-width: 440px;
    width: 100%;
}
.text1{
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
    color:#007BFF;
}
.text2{
    font-weight: 700;
    margin-top: 30px;
}
.text3{
    margin-top: 10px;
}
.text3 a{
    font-size: 10px;
}
.text4{
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    color:#999;
    font-weight: 400;
}
.text5{
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    color:#007BFF;
    font-weight: 600;
}

/* Notificación flotante */
#popup {
    display: none;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
    z-index: 9999;
    background: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    font-family: sans-serif;
    text-align: center;
    max-width: 90%;
    word-wrap: break-word;
}

/* Confirmación personalizada */
#confirmPopup {
    display: none;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    font-family: sans-serif;
    text-align: center;
    z-index: 10000;
    max-width: 90%;
}

#confirmText {
    margin-bottom: 15px;
}

/* Ajuste para móviles */
@media (max-width: 650px) {
    .container {
    min-width: 440px;
    border-radius: 10px; /* Bordes más suaves en pantallas pequeñas */
    }
}
.login{
    display: flex;
    min-width: 440px;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;

}
.login form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: right;
    width: 300px;
}
.login form input{
    background-color: #ddedf8; /* Celeste claro por defecto */
    border: 2px solid transparent;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    outline: none; /* Elimina el borde predeterminado del navegador */
}
.campo-fecha {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 12px;
    width: 100%;
}

.campo-fecha label {
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 500;
    text-align: left;
}

