﻿body {
    /* CARGAMOS LA IMAGEN DE FONDO MÉDICA GENERADA */
    background-color: #f6f9f9;
    background-image: url('../img/general-background.png'); /* Reemplaza por la ruta de tu imagen descargada */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: table;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Contenedor principal para centrar verticalmente el login */
.vertical-align-wrapper {
    display: table-cell;
    vertical-align: middle;
}

.login-container {
    max-width: 420px;
    margin: 0 auto;
    padding: 15px;
}

.login-card {
    background-color: rgba(255, 255, 255, 0.95); /* Blanco con una sutil transparencia */
    border: 1px solid rgba(220, 224, 230, 0.6);
    border-radius: 12px;
    padding: 35px 40px;
    -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

/* Estética de marca y cabecera */
.logo-container {
    text-align: center;
    margin-bottom: 15px;
}

    .logo-container img {
        max-width: 180px;
        height: auto;
    }

.subheading {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #7a8b99;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 30px;
}

/* Inputs estilizados (Líneas finas, más limpios) */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 44px;
    padding: 10px 16px;
    font-size: 14px;
    border: 1px solid #dce1e5;
    border-radius: 6px;
    background-color: #fcfdfe;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -o-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

    .form-control:focus {
        border-color: #00778c; /* Color de enfoque en sintonía con Soirées */
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 8px rgba(0, 119, 140, 0.15);
        box-shadow: 0 0 8px rgba(0, 119, 140, 0.15);
    }

/* Ajustes para el checkbox de Bootstrap 3 */
.checkbox-wrapper {
    margin-bottom: 20px;
    font-size: 13px;
    color: #666;
}

    .checkbox-wrapper label {
        font-weight: normal;
        cursor: pointer;
    }

/* Botón de Enviar Moderno (Plano y limpio) */
.btn-signin {
    background-color: #00778c; /* Azul/Turquesa institucional */
    border: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px;
    width: 100%;
    border-radius: 6px;
    -webkit-transition: background-color 0.2s ease;
    -o-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
}

    .btn-signin:hover,
    .btn-signin:focus,
    .btn-signin:active {
        background-color: #005f70 !important;
        color: #ffffff !important;
        outline: none !important;
    }

/* Enlaces secundarios */
.auxiliar-links {
    margin-top: 25px;
    text-align: center;
    font-size: 13px;
}

    .auxiliar-links a {
        color: #00778c;
        text-decoration: none;
        -webkit-transition: color 0.15s ease;
        -o-transition: color 0.15s ease;
        transition: color 0.15s ease;
    }

        .auxiliar-links a:hover {
            color: #004652;
            text-decoration: underline;
        }
