/* Global styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa; /* Light background for contrast */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Form container */
.form-container {
    background-color: white;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    text-align: center;
}

/* Form title */
h2 {
    color: #1abc9c;
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Form group */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

/* Form labels */
label {
    font-size: 1rem;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

/* Input fields */
input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: border 0.3s ease;
}

/* Focus effects on input fields */
input[type="email"]:focus {
    border-color: #1abc9c;
    outline: none;
}

/* Submit button */
button[type="submit"] {
    background-color: #1abc9c;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

/* Submit button hover effect */
button[type="submit"]:hover {
    background-color: #16a085;
}
