/* General styling */
body {
    font-family: 'Quicksand', sans-serif;
    background-color: #ffffff;
}

/* Form container styling */
#email-registration-form-container {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: #008752;
    margin-bottom: 15px;
}

/* Form field styling */
.field {
    margin-bottom: 15px;
}

.field label {
    display: block;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
}

.field input {
    width: 100%;
    padding: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.field input:focus {
    border-color: #008752;
    outline: none;
}

/* Button styling */
.btn-group .btn-submit-email {
    background-color: #008752;
    color: white;
    font-family: 'Oswald', sans-serif;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-group .btn-submit-email:hover {
    background-color: #00693f;
}

/* Error message styling */
.errors {
    color: red;
    display: none;
    font-family: 'Quicksand', sans-serif;
}

/* Consent text */
.consent {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

/* Required star */
.required-star {
    color: red;
}
