body {
    margin: 0;
    font-family: "Vazirmatn", sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.auth-container {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background: linear-gradient(to bottom, #37475a, #2a3749);
    border-radius: 15px;
    padding: 30px 25px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.7s ease-in-out;
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color:rgb(252, 252, 252);
    font-weight: 700;
    font-size: 1.6rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #ccc;
}

.form-group input {
    width: 95%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: 0.3s;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px #ff9900;
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ff9900;
    color: #1e1e1e;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffcc33, #ffb347);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 189, 87, 0.4);
}

.btn-secondary {
    background: #444;
    color: #fff;
    margin-top: 15px;
}

.btn-secondary:hover {
    background: #555;
    transform: translateY(-2px);
}

.alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-align: center;
}

.alert-danger {
    background: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
}

.alert-success {
    background: rgba(0, 255, 0, 0.1);
    color: #4cd137;
}

.switch-auth {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.switch-auth a {
    color: #ffb347;
    text-decoration: none;
    font-weight: 600;
}

.switch-auth a:hover {
    text-decoration: underline;
}

/* انیمیشن */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* مخفی کردن فرم تایید */
.verification-form {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

@media (max-width: 480px) {
    .auth-container {
        padding: 20px;
    }
    .auth-container h2 {
        font-size: 1.3rem;
    }
    .btn {
        font-size: 0.9rem;
    }
}
p{
    color:rgb(252, 252, 252);
}