body {
    font-family: 'Arial', sans-serif;
}

.registration {
    text-align: center;
    margin-top: 20px;
}

.register-button {
    background-color: #4CAF50; /* Green color */
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.register-button:hover {
    background-color: #45a049; /* Darker green color on hover */
}

#registrationForm {
    display: none;
    text-align: center; /* Center the form content */
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background-color: silver;
    border-radius: 10px;
}

#registrationForm label {
    display: block;
    margin-bottom: 5px;
    text-align: left;
}

#registrationForm input,
#registrationForm select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.submit-button {
    background-color: #4CAF50; /* Green color */
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #45a049; /* Darker green color on hover */
}
a {
    text-decoration: none;
    color: inherit; /* Optional: Inherit the color from the parent */
}