@font-face{
    font-family: "vazir";
    src: url("../font/Vazirmatn-Thin.ttf");
}
body {
    background: linear-gradient(135deg, #fcfcfc 0%, #eef2f7 100%);
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: vazir;//, Tahoma, Arial, sans-serif;
}

.login-card {
    width: 370px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 32px rgba(206, 221, 255, 0.18), 0 1.5px 12px rgba(255, 224, 80, 0.09);
    padding: 38px 30px 34px 30px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 32px 0;
}

.login-card h1 {
    color: #ffbf00;
    font-size: 22px;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.6;
}
.login-card h2 {
    color: #100f0e;
    font-size: 22px;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.6;
}

.login-card .subtitle {
    color: #636363;
    text-align: center;
    margin-bottom: 24px;
    font-size: 16px;
}

.login-card input {
    border: 1.2px solid #eee;
    background: #fafafa;
    border-radius: 11px;
    padding: 13px 12px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.17s;
    margin-bottom: 16px;
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
}

.login-card input:focus {
    border-color: #ffd85c;
    background: #fff;
}

.login-card button {
    background: linear-gradient(90deg, #ffd600 6%, #ffa800 94%);
    color: #222;
    border: none;
    border-radius: 11px;
    font-size: 16px;
    font-weight: 800;
    font-family: inherit;
    padding: 13px 0;
    margin-top: 3px;
    box-shadow: 0 1.5px 12px rgba(255, 208, 81, 0.12);
    cursor: pointer;
    transition: background 0.22s, box-shadow 0.22s;
    width: 100%;
}

.login-card button:hover {
    background: linear-gradient(90deg, #ffe46c 18%, #ffaa22 87%);
    box-shadow: 0 5px 24px rgba(255, 217, 79, 0.21);
}