﻿@import url('Vazir-FD.css');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Vazir-FD", sans-serif;
    background: linear-gradient(135deg, #f9faff 0%, #eaf8f5 100%);
    color: #3a3c47;
    min-height: 100vh;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-card {
    width: 100%;
    max-width: 430px;
    background: #ffffff;
    border-radius: 22px;
    padding: 38px 34px;
    border: 1px solid #e1e2f0;
    box-shadow: 0 18px 45px rgba(42, 45, 48, 0.12);
    text-align: center;
}

.logo-box {
    width: 110px;
    height: 110px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #f9faff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px #e1e2f0;
}

    .logo-box img {
        max-width: 80px;
        max-height: 80px;
    }

h1 {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    color: #2f3344;
}

.login-subtitle {
    margin: 10px 0 30px;
    font-size: 14px;
    color: #8086a9;
}

.form-group {
    text-align: right;
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 15px;
        color: #555b78;
    }

    .form-group input {
        width: 100%;
        height: 50px;
        padding: 0 16px;
        border: 1px solid #d6d8e6;
        border-radius: 14px;
        font-size: 15px;
        font-family: "Vazir-FD", sans-serif;
        color: #3a3c47;
        background: #fbfcff;
        transition: all 0.25s ease;
    }

        .form-group input:focus {
            outline: none;
            border-color: #15C39A;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(21, 195, 154, 0.13);
        }

        .form-group input::placeholder {
            color: #b4bad1;
        }

#btn_login {
    width: 100%;
    height: 52px;
    margin-top: 10px;
    border: none;
    border-radius: 100px;
    background: linear-gradient(135deg, #15C39A, #0ea982);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    font-family: "Vazir-FD", sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 10px 22px rgba(21, 195, 154, 0.28);
}

    #btn_login:hover {
        transform: translateY(-2px);
        background: linear-gradient(135deg, #20d2a8, #15C39A);
    }

    #btn_login:active {
        transform: translateY(0);
    }

#btn_order {
    width: 100%;
    height: 52px;
    margin-top: 10px;
    border: none;
    border-radius: 100px;
    background: linear-gradient(135deg, #20aff5, #4e96ba);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    font-family: "Vazir-FD", sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 10px 22px rgba(21, 195, 154, 0.28);
}

    #btn_order:hover {
        transform: translateY(-2px);
        background: linear-gradient(135deg, #47bcf5, #66cafc);
    }

#btn_order:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .login-page {
        padding: 18px;
        align-items: flex-start;
        padding-top: 45px;
    }

    .login-card {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .logo-box {
        width: 92px;
        height: 92px;
    }

        .logo-box img {
            max-width: 68px;
            max-height: 68px;
        }

    h1 {
        font-size: 22px;
    }

    .login-subtitle {
        font-size: 13px;
        line-height: 1.9;
    }

    .form-group input {
        height: 48px;
        font-size: 14px;
    }

    button {
        height: 50px;
        font-size: 16px;
    }
}
