/* Frontend Styles for BG Newsletter Pro */

.bg-newsletter-form-container-custom {
    max-width: 100%;
}

.form-box.form {
    margin-bottom: 15px;
}

.form-box.form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.bg-form-field {
    margin-bottom: 15px;
}

.bg-form-field input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.bg-form-field input:focus {
    border-color: #2271b1;
    outline: none;
}

.bg-submit-btn {
    width: 100%;
    padding: 12px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-submit-btn:hover {
    background: #135e96;
}

.bg-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.bg-form-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
}

.bg-form-message.success {
    background: #e7f6ed;
    color: #205d3e;
    border: 1px solid #c3e6cb;
}

.bg-form-message.error {
    background: #fcf0f1;
    color: #a00;
    border: 1px solid #f5c6cb;
}

/* Loader */
.bg-loader {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #2271b1;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: bg-spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes bg-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
