/* Background */
.login-wrapper {
    position: relative;
    background: url('../img/login.jpg') center/cover no-repeat;
}

/* Dark Overlay */
.login-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.7), rgba(0,0,0,.5));
}

/* Card */
.login-card {
    position: relative;
    z-index: 2;
    background: rgb(6 41 19 / 55%);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
    animation: fadeUp 0.8s ease;
}

/* Logo */
.login-logo {
    max-height: 70px;
}

/* Headings */
.luxury-text {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

.sub-text {
    color: #ddd;
    font-size: 14px;
}

/* Inputs */
.login-input {
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 12px;
    padding: 14px;
    color: #fff;
}

    .login-input::placeholder {
        color: #eee;
    }

    .login-input:focus {
        outline: none;
        box-shadow: 0 0 0 2px #d4af37;
        background: rgba(255,255,255,0.25);
    }

/* Button */
.login-btn {
    background: linear-gradient(135deg, #d4af37, #b8962e);
    border: none;
    border-radius: 14px;
    padding: 14px;
    font-weight: 600;
    color: #000;
    margin-top: 10px;
    transition: 0.3s;
}

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(212,175,55,.5);
    }

/* Links */
.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

    .login-links a {
        color: #fff;
        font-size: 13px;
        text-decoration: none;
        opacity: .85;
    }

        .login-links a:hover {
            opacity: 1;
            text-decoration: underline;
        }

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media(max-width:576px) {
    .login-card {
        padding: 25px 20px;
    }

    .login-links {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
