@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.newsletter-form-input {
    font-family: Inter, sans-serif;
    color: #000;
    font-size: 14px;
    margin: 0 0 10px;
    width: 100%;
    max-width: 300px;
    min-width: 100px;
    background: #fff;
    border: 1px solid #d1d5db;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    padding: 8px 12px;
}

.newsletter-form-button,
.newsletter-loading-button {
    background: hwb(209 11% 43%);
    font-size: 14px;
    color: #fff;
    font-family: Inter, sans-serif;
    width: 100%;
    max-width: 300px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 17px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    font-weight: 500;
    line-height: 20px;
    border: none;
    cursor: pointer;
}

.newsletter-loading-button {
    display: none;
}

.newsletter-success,
.newsletter-error {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.newsletter-success-message {
    font-family: Inter, sans-serif;
    color: #125013;
    font-size: 14px;
}

.newsletter-error-message {
    font-family: Inter, sans-serif;
    color: #b91c1c;
    font-size: 14px;
}

.newsletter-back-button {
    display: none;
    color: #6b7280;
    font-family: Inter, sans-serif;
    font-size: 14px;
    margin: 10px auto;
    text-align: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

.newsletter-back-button:hover {
    text-decoration: underline;
}
