/* email-signup.css */
#email-signup-form {
    display: flex;
    align-items: center;
}

#esp-email {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1;
    margin-right: 10px;
}

#esp-submit {
    padding: 10px 20px;
    background-color: #c1b4a8;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin: 1rem 0 1rem;
}

#esp-submit:disabled {
    background-color: #e0d7ce;
    cursor: not-allowed;
}

#esp-response-message {
    margin-left: 10px;
}