/* Contenedor principal de los formularios */
.login-register-container {
    display: flex;
}

/* Estilo para los títulos de los formularios */
.login-register-container h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Sección de login y registro */
.login-section {
    flex: 1;
    padding: 40px 40px 40px;
}


.register-section {
    flex: 1;
    padding: 40px 40px 40px 40px;
}

.login-section {

    border-inline-end: 1px solid #e1e8ed;
}

/* Estilos de los formularios */
.form {
    display: flex;
    flex-direction: column;
}

.form-row {
    margin-bottom: 15px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-row .required {
    color: #e55c5c;
}

.input-text {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}

.button-primary {
    background-color: #0073e6;
    color: #fff;
}

.cancel-button {
    background-color: rgba(200, 200, 200, 1) !important;
}

.form-row-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.form-checkbox {
    margin-right: 8px;
}

.lost-password-link {
    text-align: center;
    margin-top: 15px;
}

.lost-password-link a {
    color: #0073e6;
    text-decoration: none;
}

/* Media Queries para pantallas pequeñas */
@media (max-width: 1024px) {
    .login-register-container {
        flex-direction: column;
        gap: 20px;
    }
}



/*nombre y apellido misma linea*/


.form-row-group {
    display: flex;
    justify-content: space-between;
    gap: 1em;
}

.form-row-group .form-row {
    flex: 1;
}



@media (max-width: 620px) {
    .form-row-group {
        flex-direction: column;
    }
}

/* .hide-button {
    display: none;
}
 */



