﻿
body {
    margin: 0;
    font-family: 'Tajawal', sans-serif;
    background: linear-gradient(135deg, #1a1c2c, #3b59d4);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #fff;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 500px;
    text-align: center;
}

#lottie-container {
    width: 250px;
    height: 250px;
    margin: auto;
}

.form {

    margin-top: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    text-align: left;
    display: none;
    color: #000;
    animation: fadeIn 1s ease forwards;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form h3 {
    text-align: center;
    margin-bottom: 15px;
}

.form input {
    font-family: 'Tajawal', sans-serif;
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
}

.form button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #3b59d4;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    font-family: 'Tajawal', sans-serif;
}

@media (max-width: 480px) {
    #lottie-container {
        width: 200px;
        height: 200px;
    }

    .form {
        padding: 15px;
    }

        .form input, .form button {
            padding: 10px;
            font-size: 14px;
            font-family: 'Tajawal', sans-serif;
        }
}


