/* styles for the subscription form */

.subscription-form {
    position: relative;
    max-width: 500px;
    margin: 20px auto;
}

/* Container styling for the input field and submit button */
.sp-form-container {
    position: relative;
    min-height: 60px;
}

/* Input field styles */
.sp-input {
    border-radius: 50px !important;
    padding: 17px 120px 17px 18px !important;
    width: 100%;
    height: 56px;
    border: 1px solid #ddd;
    font-size: 16px;
    box-sizing: border-box;
}

/* Submit button styles */
.sp-submit {
    background-color: #2588F3 !important;
    border-radius: 30px;
    padding: 12px 25px !important;
    position: absolute;
    right: 6px;
    top: 6px;
    color: #FFFFFF !important;
    border: none;
    cursor: pointer;
    font-size: 14px;
}


/* Notification message styling */
.sp-message {
    display: none ;
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

.sp-message.error {
    border-color: #f44336;
    background-color: #ffebee;
    color: #d8000c;
}

.sp-message.success {
    border-color: #4caf50;
    background-color: #e8f5e9;
    color: #2e7d32;
}