﻿/* Scoped styles for the Newsletter page */
.newsletter-page {
    background: linear-gradient(80deg, var(--primary-color), var(--secondary-color));
    font-family: Arial, sans-serif;
    color: #fff;
    padding: 20px;
}

    .newsletter-page .newsletter-container {
        max-width: 600px;
        margin: 50px auto;
        background: #fff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        color: #333;
    }

    .newsletter-page .newsletter-header {
        text-align: center;
        margin-bottom: 30px;
    }

        .newsletter-page .newsletter-header h2 {
            color: var(--primary-color);
            font-weight: bold;
        }

        .newsletter-page .newsletter-header p {
            font-size: 15px;
            color: var(--tertiary-color);
        }

    .newsletter-page .input-group {
        margin-top: 20px;
        display: flex;
        align-items: center;
    }

    .newsletter-page .input-group-addon {
        background-color: var(--primary-color);
        border: 2px solid var(--primary-color);
        border-radius: 5px 0 0 5px;
        color: #fff;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .newsletter-page .form-control {
        
        font-size: 16px;
        border: 2px solid var(--primary-color);
        padding-left: 10px;
        height: 40px;
    }

    .newsletter-page .input-group i {
        font-size: 16px;
        color: #fff;
    }

    .newsletter-page .btn-subscribe {
        background-color: var(--primary-color);
        color: #fff;
        border-radius: 20px;
        padding: 10px 20px;
        font-size: 18px;
        font-weight: bold;
        transition: background-color 0.3s;
        width: 100%;
        margin-top:20px
    }

        .newsletter-page .btn-subscribe:hover {
            background-color: var(--secondary-color);
        }

    .newsletter-page .footer {
        text-align: center;
        margin-top: 20px;
        font-size: 14px;
        color: var(--tertiary-color);
    }

    .newsletter-page .icon {
        font-size: 40px !important;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

.no-focus-effect:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--secondary-color);
}