/* File: E:\0 Programming\Javid\FoodReservation\FoodReservation.Web\wwwroot\css\site.css */


/* ============================
   Vazirmatn Font
   ============================ */
   @font-face {
    font-family: 'Vazirmatn';
    src: url('/fonts/vazirmatn/Vazirmatn-FD-Regular.woff2') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('/fonts/vazirmatn/Vazirmatn-FD-Bold.woff2') format('woff2');
    font-weight: 700;
}


/* ============================
   Base
   ============================ */

body {
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
    text-align: right;
    margin: 0;
    background: #f5f7fa;
}


/* ============================
   Login Background (Gradient)
   ============================ */

.login-bg {
    background: linear-gradient(135deg, #003366, #005b8f, #0092c7);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ============================
   Login Card (Glassmorphism)
   ============================ */

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 18px;
    padding: 40px 35px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
    max-width: 420px;
    color: white;
}

.login-title {
    font-weight: 700;
}

.login-subtitle {
    opacity: 0.9;
}


/* ============================
   Logo
   ============================ */

.login-logo {
    width: 110px;
    height: auto;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.25));
}


/* ============================
   Input with Icon
   ============================ */

.input-icon {
    position: relative;
}

.input-icon .icon {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
}

.input-with-icon {
    padding-right: 40px !important;
}

.form-control {
    border-radius: 10px;
}


/* ============================
   Modern Login Button
   ============================ */

.login-btn-modern {
    border-radius: 10px;
    padding: 12px;
    background: #007bff;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.login-btn-modern:hover {
    background: #0a89ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 140, 255, 0.35);
}


/* ============================
   Footer
   ============================ */

.login-footer {
    margin-top: 20px;
    line-height: 1.8;
}

.login-version {
    font-weight: bold;
}

.login-credit {
    font-size: 14px;
    opacity: 0.9;
}


/* ============================
   Animation
   ============================ */

.animate-fade {
    animation: fadeIn 1.1s ease both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
