/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

h2 {
    font-size: 2em;
    margin: 20px 0;
    animation: fadeInUp 1s ease-in-out;
}

form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    animation: zoomIn 0.5s ease-in-out;
}

textarea {
    width: 90%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 1em;
    resize: none;
    transition: box-shadow 0.3s ease;
}

textarea:focus {
    outline: none;
    box-shadow: 0 0 10px #00e6ff;
}

input[type="number"] {
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 1em;
    width: 50%;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

input[type="number"]:focus {
    outline: none;
    box-shadow: 0 0 10px #00e6ff;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background: #00e6ff;
    color: #000;
    font-size: 1.2em;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
}

button:hover {
    background: #00bfff;
    transform: scale(1.1);
}

button:active {
    transform: scale(0.9);
}

hr {
    border: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    margin: 30px 0;
    animation: fadeIn 1s ease-in-out;
}

p {
    font-size: 1.2em;
    margin: 10px 0;
    animation: fadeIn 0.8s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
