/* ============================
   GLOBAL WRAPPER
============================ */
.login-wrapper {
    height: 100vh;
    background: linear-gradient(135deg, #0d0d0d 0%, #1c1c1c 40%, #1a1f24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
}


/* ============================
   BACKGROUND LIGHT EFFECTS
============================ */
.light-1,
.light-2 {
    position: absolute;
    width: 420px;
    height: 420px;
    filter: blur(90px);
    opacity: 0.55;
    z-index: 1;
}

.light-1 {
    top: -80px;
    left: -80px;
    background: radial-gradient(circle, #ff6a00aa 0%, transparent 70%);
}

.light-2 {
    bottom: -80px;
    right: -80px;
    background: radial-gradient(circle, #0084ffaa 0%, transparent 70%);
}


/* ============================
   LOGIN CARD
============================ */
.login-card {
    width: 100%;
    max-width: 430px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    padding: 40px 35px;
    z-index: 5;
    position: relative;
}

/* Fade animation */
@keyframes fadeInCustom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-fade {
    animation: fadeInCustom 1.1s ease;
}


/* ============================
   LOGO & TITLE
============================ */
.login-logo {
    width: 140px;
    border-radius: 14px;
    background: white;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.login-title {
    color: #fff;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-subtitle {
    color: #cccccc;
    text-align: center;
    font-size: 14px;
    margin-bottom: 28px;
}


/* ============================
   INPUTS
============================ */
.custom-input {
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    color: #fff;
    padding: 12px;
    transition: 0.25s;
}

.custom-input:focus {
    border-color: #ff6a00;
    background: #161616;
    box-shadow: 0 0 0 2px #ff6a0044;
    color: #fff;
}


/* ============================
   BUTTON
============================ */
.custom-btn {
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    border: none !important;
    border-radius: 12px !important;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.4);
    transition: 0.3s;
}

.custom-btn:hover {
    opacity: 0.9;
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.5);
}


/* ============================
   FOOTER
============================ */
.login-footer {
    text-align: center;
    margin-top: 25px;
    color: #aaa;
    font-size: 13px;
}