﻿@import url('https://fonts.googleapis.com/css2?family=Lalezar&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn&display=swap');
body {
    font-family: 'Vazirmatn', sans-serif;
    background-image: url('/img/bg1.png');
    background-position: center;
    perspective: 1000px;
}

@media (max-width: 768px) {
    body {
        background-image: url('/img/bg2.png');
        background-size: cover;
        background-repeat: no-repeat;
        animation: gradientMove 15s ease infinite;
    }

    .title-academy {
        text-align: center;
        margin-top: 1rem;
        font-size: 2.4rem;
    }

    .logo-title-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.glass-card {
    background: linear-gradient(135deg, #d1fae5, #e0f2fe);
    border: 1px solid #dbeafe;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-3d {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .btn-3d:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

.title-academy {
    font-family: 'Lalezar', cursive;
    font-size: 2.4rem;
    color: #059669;
}

.text-green-custom {
    color: #059669;
}

.error-message {
    color: red;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
