﻿/* Login.aspx */

/* reset mínimo */
html, body {
    height: 100%;
    margin: 0;
}

/* fondo con imagen (valores: ajusta el path si hace falta) */
.login-bg {
    background-image: url('../images/bg-login.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    /* capa blanca para que el fondo quede difuminado */
    background-repeat: no-repeat;
}

/* card central */
.login-card {
    max-width: 420px;
    width: 100%;
    background: rgba(255,255,255,0.88);
    border: none;
    border-radius: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* logo */
.logo {
    max-width: 160px;
}

/* inputs tipo "pill" */
.input-pill {
    border-radius: 30px;
    padding: 12px 18px;
    border: 1px solid #dcdcdc;
    box-shadow: none;
}

    .input-pill:focus {
        box-shadow: none;
        outline: none;
        border-color: #27436f;
    }

/* botón principal (azul, redondeado) */
.btn-login {
    background-color: #27436f;
    border-radius: 24px;
    padding: 12px 20px;
    font-weight: 600;
    width: 100%;
    border: none;
    color: #fff;
    box-shadow: 0 6px 0 rgba(0,0,0,0.08);
}

    .btn-login:active {
        transform: translateY(1px);
        box-shadow: 0 4px 0 rgba(0,0,0,0.06);
    }

/* navbar logo pequeño */
.nav-logo {
    height: 36px;
}

/* links */
a {
    color: #27436f;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* pequeños ajustes responsivos */
@media (max-width: 420px) {
    .login-card {
        margin: 0 12px;
    }

    .logo {
        max-width: 140px;
    }
}
.carnet-card {
    border-radius: 16px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: transform 0.15s ease;
}

/* cards de opciones */
.option-card {
    border-radius: 16px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: transform 0.15s ease;
}
    .option-card:hover {
        transform: scale(1.05);
    }

/* imágenes dentro de los circulitos */
.icon-img {
    width: 90px; /* ancho del icono */
    height: 90px; /* alto del icono */
    object-fit: contain; /* mantiene proporción sin deformar */
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* carnet */
.carnet-img {
    border-radius: 12px 12px 0 0;
    object-fit: cover;
}

/* Transición suave */
.icon-img,
.carnet-img,
.option-card img {
    transition: transform 0.3s ease;
}

    /* Efecto al pasar el mouse */
    .icon-img:hover,
    .carnet-img:hover,
    .option-card:hover img {
        transform: scale(1.1);
    }
