:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #f4623a;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #f4623a;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.submit-btn, .sp-form button {
    display: inline-block;
    font-weight: 600;
    background: #18ad31;
    margin: 0;
    max-height: 56px;
    font-size: 1rem;
    color: #fff;
    margin-left: 16px;
    font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-transform: uppercase;
}

.sp-form {
    width: auto;
}

.inline-block {
    display: inline-block;
}

.sp-form input[type="email"] {
    text-align: center;
    font-size: 20px !important;
    vertical-align: middle;
    font-family: "Merriweather", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    outline: 0 none;
    border: none;
}

.sp-form input[type="email"]:focus {
    box-shadow: 0 1px 1px rgba(78, 239, 92, 0.075) inset, 0 0 8px rgba(28, 229, 23, 0.4);
}

.sp-message {
    text-align: center;
    font-family: "Merriweather", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    line-height: 1.5 !important;
}

.sp-message-success, .sp-message-error {
    background: rgba(255,255,255,0.08) !important;
    padding: 16px !important;
}

.sp-message-success strong, .sp-message-error strong {
    font-size: 26px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 36px;
}

.sp-message .content,
.sp-message .content strong {
    font-size: 18px;
    font-weight: 100;
    color: #fff;
}

.sp-message .content {
    margin-top: 24px;
}

.sp-message .content strong {
    font-weight: 400;
}

@media (max-width: 991px) {
    
    .submit-btn, .sp-form button {
        width: 600px;
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .sp-form {
        width: 100%;
    }

    .sp-field {
        width: 100%;
    }
    
    .submit-btn, .sp-form button {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .submit-btn, .sp-form button {
        font-size: 12px !important;
    }


}

@media (max-width: 454px) {
    .sp-message-error strong {
        font-size: 20px;
    }

    .sp-message-success strong {
        font-size: 20px;
    }

    .sp-message .content,
    .sp-message .content strong {
        font-size: 16px;
    }
}