/* ============================
   RESET
============================ */
body, html {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

/* ============================
   FONDO ESTILO ARRAIJÁN
============================ */
.login-background {
    height: 100vh;
    width: 100%;
    background: linear-gradient(180deg, #003a6c, #0056a8);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================
   CENTRADO PERFECTO
============================ */
.login-center {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================
   CAJA LOGIN
============================ */
.login-box {
    width: 380px;
    background: #ffffff;
    padding: 28px 30px 38px 30px;
    border-radius: 14px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.25);
    animation: fadeIn 0.6s ease-out;
    text-align: center;
}

/* Animación */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================
   LOGO
============================ */
.logo-sitec {
    width: 280px;
    max-width: 95%;
    margin-bottom: 0px !important;  /* Espacio reducido */
}

/* ============================
   TÍTULO
============================ */
.login-title {
    font-size: 22px;
    font-weight: bold;
    color: #003a6c;
    margin-top: 8px !important;      /* Título más arriba */
    margin-bottom: 18px !important;
}

/* ============================
   INPUTS
============================ */
.form-group {
    text-align: left;
    margin-bottom: 15px;
}

.label-text {
    font-size: 14px;
    font-weight: 600;
    color: #003A6C;
    margin-bottom: 5px;
    display: block;
}

.modern-input {
    width: 100%;
    height: 34px;
    border: 1px solid #c3d4e0;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 15px;
    background: #f8fbff;
}

.modern-input:focus {
    border-color: #0074d0;
    box-shadow: 0 0 5px rgba(0, 116, 208, 0.35);
}

/* ============================
   BOTÓN OJO
============================ */
.input-group {
    display: flex;
}

.btn-show {
    height: 34px;
    padding: 0 12px;
    background: #005A9E;
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
}

.btn-show:hover {
    background: #003A6C;
}

/* ============================
   BOTÓN INGRESAR
============================ */
.btn-login {
    width: 100%;
    background: #003A6C;
    color: white;
    border: none;
    padding: 10px;
    font-size: 15px;
    border-radius: 8px;
    margin-top: 18px;
}

.btn-login:hover {
    background: #005A9E;
}

/* ============================
   LINK RECUPERAR
============================ */
.forgot {
    margin-top: 15px;
    font-size: 14px;
}

.forgot a {
    color: #005A9E;
    font-weight: bold;
}

/* ============================
   RESPONSIVE
============================ */
@media(max-width: 500px) {
    .login-box { width: 90%; }
}
