﻿/* --- ESTILOS UNIFICADOS (Línea Gráfica Examed - Admin) --- */

body {
    /* Imagen de fondo específica para Admin, pero con propiedades modernas */
    background-image: url("/ExamedInicio/images/resource/centros_medicos_70.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #4b5563;
}

/* Contenedor principal centrado */
.login-container {
    min-height: 85vh; /* Un poco más alto para acomodar el input extra */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* --- TARJETA ESTILO PRO --- */
.card-pro {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 40px 40px;
    width: 100%;
    max-width: 450px;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

    .card-pro:hover {
        /*transform: translateY(-5px);*/
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    }

/* Títulos */
.title-pro {
    font-weight: 800;
    color: #35388D;
    margin: 10px 0 25px 0;
    font-size: 1.6rem; /* Un poco más pequeño porque el título es largo */
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Inputs Personalizados */
.input-pro {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    background-color: #f9fafb;
    /*font-size: 1rem;*/
    text-align: center;
    transition: all 0.3s ease;
    color: #35388D;
    font-weight: 600;
}

    .input-pro:focus {
        outline: none;
        border-color: #35388D;
        background-color: #fff;
        box-shadow: 0 0 0 4px rgba(53, 56, 141, 0.1);
    }

/* Botón Principal */
.btn-pro {
    width: 100%;
    background: linear-gradient(135deg, #35388D 0%, #5356b3 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    /*font-size: 1.1rem;*/
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(53, 56, 141, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

    .btn-pro:hover {
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(53, 56, 141, 0.4);
    }

/* Radio Buttons */
.radio-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    color: #4b5563;
    font-weight: 500;
    /*font-size: 0.95rem;*/
}

    .radio-container input[type="radio"] {
        margin-right: 5px;
        transform: scale(1.2);
        cursor: pointer;
    }

/* Logo */
.img-logo {
    max-width: 180px;
    margin-bottom: 10px;
}

/* Enlaces */
.link-pro {
    color: #35388D;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    /*font-size: 0.95rem;*/
    display: block;
    margin-top: 20px;
}

    .link-pro:hover {
        color: #5356b3;
        text-decoration: underline;
    }

/* Alertas de error personalizadas */
.alert-custom {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 0.9rem;
    background-color: #fce7f3;
    color: #be123c;
    border-color: #fda4af;
}
