@charset "utf-8";
/* CSS Document */



/* Centered Form Wrapper */
.form-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 900px;
}

.form-container h2 {
    margin-bottom: 20px;
    color: #333333;
    text-align: center;
}

/* Spacing out the fields */
.form-group {
    margin-bottom: 15px;
}

/* Accessible, block-level labels */
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #666666;
    font-size: 14px;
}

/* Styling for Text Inputs and Textareas */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect overall width */
    font-size: 14px;
}

/* Interactive focus borders */
input:focus,
textarea:focus {
    border-color: #007BFF;
    outline: none;
}

/* Submit Button Layout and Hover States */
.submit-btn {
    width: 100%;
    background-color: #306754;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background-color: #0056b3;
}


