/* General body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

/* Header styles */
h2 {
    text-align: center;
    margin-top: 20px;
    color: #333;
}

/* Form container styling */
.form-container {
    width: 100%;
    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);
}

/* Form group styles */
.form-group {
    margin-bottom: 20px;
}

/* Label styling */
.form-group label {
    font-size: 1.1em;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

/* Input field styling */
.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 5px;
}

/* Input field focus styles */
.form-group input:focus {
    border-color: #5b9bd5;
    outline: none;
}

/* Submit button styling */
button {
    width: 20%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    font-size: 1.2em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Hover effect for the button */
button:hover {
    background-color: #45a049;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .form-container {
        padding: 15px;
    }

    button {
        font-size: 1em;
    }
}
