.subscriber-form-container {
    background: #55cc41;
    text-align: center;
    padding: 40px 0;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
}
.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #00000024;
    color: #2b2b2b;
    border: 1px solid #00000017;
    font-size: 14px;
    height:40px;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
        border-color: #00000021;
        box-shadow:none;
        outline:none;
}
#subscriber-form input[type="submit"] {
    text-align: center;
    font-size: 16px;
    border-radius: 6px;
    font-weight: 600;
    background-color: #162c1a;
    color: #fff !important;
    cursor: pointer;
    padding: 12px 32px;
    border: 1px solid #00000017;
}
.form-group input[type="submit"]:hover {
    background:#162c1ae0;
}
#form-message {
    margin-top: 10px;
    padding: 10px;
    display: none;
}
.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
