/* ==========================================
   Login - Vijaoldo (Estilo dorado elegante)
   ========================================== */

body {
    background: linear-gradient(135deg, #fefefe, #f9f2e7);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
}

.login-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-title {
    font-weight: 600;
    margin-bottom: 25px;
    color: #3b3b3b;
}

/* ====== BOTÓN DORADO ====== */
.btn-primary {
    background-color: #d4af37;
    border: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #b7952e;
    transform: scale(1.03);
}

/* ====== ENLACES ====== */
a.text-decoration-none {
    color: #d4af37;
    font-weight: 500;
}

a.text-decoration-none:hover {
    text-decoration: underline;
    color: #b7952e;
}

/* ====== LOGO CON EFECTO DORADO ====== */
.logo-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.logo-wrapper img {
    width: 120px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

/* efecto de brillo animado */
.logo-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.2) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}