.email-input-container {
    max-width: 450px;
    margin: 0 auto;
}

.email-input-container > h2 {
    margin: 15px auto;
    font-size: 20px;
    text-align: center;
}

.email-input-container .prompt-message {
    text-align: center;
    color: #555;
    margin-bottom: 20px;
}

.email-input-container .form-group {
    margin-bottom: 15px;
}

.email-input-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 14px;
}

.email-input-container .form-control {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid #767676;
    border-radius: 4px;
}

.email-input-container .form-control:focus {
    border-color: #005fcc;
    outline: 3px solid #005fcc;
    outline-offset: 1px;
    box-shadow: none;
}

.email-submit-button {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    background-color: #1e5a1f;
    color: #ffffff;
    border: 2px solid #1e5a1f;
}

.email-submit-button:hover {
    background-color: #174518;
    border-color: #174518;
}

.email-submit-button:focus {
    background-color: #174518;
    border-color: #174518;
    outline: 3px solid #005fcc;
    outline-offset: 2px;
}

.email-submit-button:disabled,
.email-submit-button:disabled:hover {
    background-color: #4a4a4a;
    border-color: #4a4a4a;
    opacity: 1;
    cursor: not-allowed;
}

.required-fields-note {
    font-size: 12px;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.required-indicator {
    color: #b30000;
    font-weight: bold;
}

.error-message {
    color: #b30000;
    font-size: 14px;
    display: block;
    margin-top: 5px;
    font-weight: 600;
}

.login-link-container {
    margin: 15px auto;
    text-align: center;
}

.login-link {
    font-size: 20px;
    color: #0056b3;
    text-decoration: underline;
}

.login-link:hover {
    color: #003d82;
    text-decoration: underline;
}

.login-link:focus {
    outline: 3px solid #005fcc;
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
