.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 700px; /* Increased from 500px to 700px */
    margin: 0 auto;
}
h2 {
    color: #00a4b4;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: left;
}
p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    text-align: left;
}
.note {
    background-color: #fff3cd;
    padding: 5px;
    font-size: 12px;
    color: #856404;
    margin-bottom: 15px;
    text-align: left;
}
label {
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}
input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
}
button {
    width: 100%;
    padding: 10px;
    background-color: #00a4b4;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
}
.error, .success {
    font-size: 12px;
    margin-bottom: 10px;
    text-align: center;
    display: none;
}
.error {
    color: red;
}
.success {
    color: green;
}
@media (max-width: 800px) {
    .form-container {
        padding: 15px;
        max-width: 90%; /* Adjusted for smaller screens */
    }
    h2 {
        font-size: 20px;
    }
    p, .note, label, input, button, .error, .success {
        font-size: 12px;
    }
}