﻿/* =========================
   LOGIN PAGE PREMIUM
========================= */

.login-section {
    padding: 80px 0;
}

.login-card {
    background: #14213d;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 50px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.03);
    overflow: hidden;
}

    /* خط طلایی بالا */
    .login-card::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 4px;
        background: linear-gradient( 90deg, #d4af37, #f7d774, #d4af37 );
    }

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

    .login-header img {
        width: 85px;
        margin-bottom: 15px;
        transition: .3s;
    }

        .login-header img:hover {
            transform: scale(1.05);
        }

    .login-header h2 {
        color: #fff;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .login-header p {
        color: rgba(255,255,255,.65);
        margin: 0;
    }

/* لیبل‌ها */
.login-card .form-label {
    color: rgba(255,255,255,.85);
    font-weight: 500;
}

/* فیلدها */
.login-input {
    height: 55px;
    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    background: rgba(255,255,255,.06) !important;
    color: #fff !important;
    transition: all .3s ease;
}

    .login-input::placeholder {
        color: rgba(255,255,255,.4);
    }

    .login-input:focus {
        background: rgba(255,255,255,.08) !important;
        border-color: #d4af37 !important;
        box-shadow: 0 0 0 3px rgba(212,175,55,.15) !important;
    }

/* دکمه ورود */
.login-btn {
    height: 55px;
    border: none;
    border-radius: 14px;
    background: linear-gradient( 135deg, #d4af37, #f7d774 );
    color: #14213d;
    font-weight: 700;
    font-size: 15px;
    transition: all .3s ease;
}

    .login-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(212,175,55,.35);
    }

/* دارک مود */
[data-bs-theme="dark"] .login-card {
    background: #101c34;
}

/* موبایل */
@media(max-width:768px) {

    .login-card {
        padding: 25px;
        border-radius: 18px;
    }

    .login-header img {
        width: 70px;
    }

    .login-header h2 {
        font-size: 1.5rem;
    }
}
