body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    animation: fadeIn 1s ease forwards;
    background: linear-gradient(to right, #3498db, #8e44ad, #3498db);
    background-size: 200% 100%;
    animation: gradient 10s linear infinite;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 0% 50%;
    }
    75% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.content-container {
    max-width: 400px;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #333;
    font-size: 28px;
}

form {
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

select, input {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    font-size: 16px;
}

input[type="submit"] {
    background: #2ecc71;
    color: #fff;
    cursor: pointer;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
    transition: background 0.5s ease;
}

input[type="submit"]:hover {
    background: #27ae60;
}
.message-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background-color: #e74c3c;
    color: #fff;
    text-align: center;
}
.select-container {
    position: relative;
}

select {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 16px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    font-size: 16px;
}

.button-container {
    text-align: center;
}

.message-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background-color: #e74c3c;
    color: #fff;
    text-align: center;
}
.large-form {
    max-width: 600px;
    margin: 0 auto;
}