/**
 * Brevo Newsletter Form Styles
 */

.sanctum-newsletter-form {
    margin: 2rem 0;
}

.brevo-form {
    max-width: 500px;
    margin: 0 auto;
}

.brevo-form .form-group {
    margin-bottom: 1rem;
}

.brevo-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    background-color: rgba(0, 0, 0, 0.1);
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-align: center;
}

.brevo-form input[type="email"]:focus {
    outline: none;
    border-color: #f27935;
    box-shadow: 0 0 5px rgba(242, 121, 53, 0.5);
}

.brevo-form input[type="submit"] {
    width: 50%;
    padding: 8px 14px;
    background-color: #f27935;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    border-radius: 25px;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(242, 121, 53, 0.3);
    text-transform: uppercase;
}

.brevo-form input[type="submit"]:hover {
    background-color: #e05f15;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(242, 121, 53, 0.5);
}

.brevo-form input[type="submit"]:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.subscribe-button-container {
    text-align: center;
    margin-top: 15px;
}

.form-response {
    margin-top: 1rem;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

.form-response.success {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.form-response.error {
    background-color: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid #F44336;
}
