﻿@media (max-width: 576px) {
    .glass-card {
        padding: 1.5rem;
    }

    h5 {
        font-size: 1rem;
    }

    .form-label {
        font-size: 0.9rem;
    }
}
body {
    margin: 0;
    font-family: "IRANSans", sans-serif;
    background: linear-gradient(135deg, #4f46e5, #9333ea);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

    .glass-card .form-control {
        background: rgba(255, 255, 255, 0.85);
        border-radius: 0.5rem;
    }

.btn-gradient {
    background: linear-gradient(90deg, #6366f1, #9333ea);
    border: none;
    font-weight: bold;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .btn-gradient:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
    }

h5, .form-label {
    color: white;
}

.text-center a {
    color: #f0f0f0;
    text-decoration: none;
}

    .text-center a:hover {
        text-decoration: underline;
    }