/* Estilos generales */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family:'Work Sans';
}

body {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
#contenedor_logo{
    background-image: url(../../img/Logosimbolo.png);
    background-size: 100%;
    height: 188.6px;
    width: 188.6px;
    justify-content: center;
    justify-items: flex-start;
    margin: -49px 0px -161px -42px;
    
}
label {
    font-size: 28px;
    font-weight: bold;
    color: #4b4b4b;;
}
/* Estilo para el contenedor de la contraseña */
/* Estilo para el contenedor de la contraseña */
/* Estilo para el contenedor de la contraseña */
#password-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

/* Estilos para el input de contraseña */
#contrasena_usuario {
    width: 100%;
    height: 82px; /* Mismo tamaño que los otros inputs */
    padding: 9px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 20px;
    color: #333;
    padding-right: 40px; /* Espacio para el ícono */
}

/* Estilo para el ícono del ojo */
.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 24px;
    color: #666;
    z-index: 2; /* Asegurarse que esté por encima del input */
}

.toggle-password:hover {
    color: #333;
}

/* Estilo para las indicaciones de la contraseña */
.password-hint {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    font-weight: normal;
    display: block;
    line-height: 1.4;
}

/* Estilo para mostrar errores */
.input-error {
    border-color: #ff3860 !important;
}
.registro a {
    color: #ff5a5a;
    text-decoration: none;
}
#password-requirements {
    color: #ff3860;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 5px; /* Espacio adicional abajo */
    display: none;
}
/* Estilo del contenedor */
.container {
    background-color: #fff;
    padding: 20px;
    width: 1200px;
    height: 100vh;
    max-width: 1200px;
    text-align: center;
}

/* Título */
.container h1 {
    margin-bottom: 109px;
    font-size: 63px;
    font-weight: bold;
    margin-top: 37px;
    color: #000000;
}

/* Filas del formulario */
.filas {
    display: flex;
    justify-content: space-between;
    margin-bottom: 11px;
    gap: 10px;
}

/* Grupos de formularios */
.grupo-inputs {
    flex: 1;
    margin-right: 10px;
    text-align: left;
}

.grupo-inputs:last-child {
    margin-right: 0;
}

.form-group label {
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
    color: #979797;
}

/* Campos de entrada y select */
.grupo-inputs input, .grupo-inputs select {
    width: 100%;
    height: 82px;
    padding: 9px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 20px;
    color: #333;
}

#coordinacion-input {
    max-width: 49%;
}

.grupo-inputs input:focus,
.grupo-inputs select:focus {
    outline: none;
    border-color: #007bff;
}

/* Botón de registro */
#cont_btn_registro {
    display: flex;
    justify-content: center;
    margin-top: 10px; 
}

#btn_registro {
    background-color: #5EB319;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 26px;
    transition: background-color 0.3s;
    width: 68%;
    font-weight: bold;
    margin-bottom: 33px;
    height: 79px;
}

#btn_registro:hover {
    background-color: #0056b3;
}

/* Estilos para el modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro con transparencia */
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
}

.modal-body {
    font-size: 16px;
    line-height: 1.5;
}

.modal-footer {
    text-align: right;
    padding-top: 10px;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

.modal-footer button {
    padding: 10px 20px;
    background-color: #5EB319;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-footer button:hover {
    background-color: #45a049;
}

/* Estilo responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        border-radius: 15px;
        width: 100%;
        max-width: 600px;
        text-align: center;
    }
    #contenedor_logo {
        width: 150px;
        height: 120px;
        margin: 0 auto;
    }
    .filas {
        flex-direction: column;
    }

    .grupo-inputs {
        margin-right: 0;
        margin-bottom: 15px;
    }

    #btn_registro {
        width: 100%;
        margin: 0;
    }

    #coordinacion-input {
        max-width: 100%;
    }
}