/* General styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Header */
.header {
    background-color: #4CAF50; /* Primary color */
    color: white;
    padding: 20px 0;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
}

/* Registration Section */
.registration-section {
    padding: 50px 20px;
    text-align: center;
}

.registration-section h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

.registration-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.registration-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.registration-form label {
    display: block;
    margin-bottom: 5px;
}

.registration-form input[type="text"],
.registration-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.registration-form input[type="submit"] {
    background-color: #4CAF50; /* Button primary color */
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.registration-form input[type="submit"]:hover {
    background-color: #45a049; /* Button hover color */
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #4CAF50; /* Footer link color */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Animation for form */
@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.registration-form {
    animation: slideIn 0.5s ease-in-out;
}
