﻿@import url('https://fonts.googleapis.com/css2?family=Vazirmatn&display=swap');

body {
    margin: 0;
    padding: 0;
    background: #f0f2f5;
    font-family: 'Vazirmatn', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    direction: rtl;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.login-box {
    background-color: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 450px;
    width: 100%;
}

    .login-box h2 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 24px;
        color: #333;
    }

.input-group {
    margin-bottom: 20px;
}

    .input-group label {
        display: block;
        margin-bottom: 8px;
        color: #333;
        font-weight: 600;
        font-size: 16px;
    }

    .input-group input {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 10px;
        transition: border 0.3s;
        box-sizing: border-box;
    }

        .input-group input:focus {
            border-color: #007bff;
            outline: none;
        }

.login-button {
    width: 100%;
    padding: 14px;
    background-color: #007bff;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

    .login-button:hover {
        background-color: #0056b3;
    }

.footer-text {
    text-align: center;
    margin-top: 25px;
    font-size: 15px;
}

    .footer-text a {
        color: #007bff;
        text-decoration: none;
        font-weight: 500;
    }

/* ✅ Media Query برای موبایل */
@media (max-width: 480px) {
    .login-box {
        padding: 30px 20px;
    }

        .login-box h2 {
            font-size: 20px;
        }

    .input-group label {
        font-size: 14px;
    }

    .input-group input {
        font-size: 14px;
        padding: 10px;
    }

    .login-button {
        padding: 12px;
        font-size: 16px;
    }
}
