.newsletter-container {
    max-width: 1200px;
    margin: 60px auto;
    margin-top: 1rem;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 40px 0 20px;
}

.newsletter-item {
    margin-bottom: 1rem;
}

.newsletter-card {
    background-color: white;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

.newsletter-card-body {
    padding: 1rem;
}

.newsletter-logo-container {
    width: 100%;
    max-width: 160px;
    margin: auto;
}

.newsletter-logo {
    width: 100%;
    max-width: 160px;
    justify-content: center;
    margin-bottom: 10px;
}

.newsletter-title {
    color: #000000;
    font-weight: 600;
    font-size: 1.7rem;
}

.newsletter-description {
    margin-bottom: 1rem;
}

.newsletter-loader {
    /* Add your loader styles here */
}

.newsletter-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .newsletter-items {
        grid-template-columns: 1fr 1fr;
    }
}

.newsletter-form-container {
    margin-top: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    align-items: center;
}

.newsletter-input-group {
    width: 40%;
}

.newsletter-input-wrapper {
    display: flex;
    align-items: center;
}

.newsletter-input-prepend {
    background-color: #e9ecef!important;
    padding: 10px!important;
    height: 100%;
    border-radius: 0.25rem 0 0 0.25rem!important;
}

.newsletter-input-text {
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
}

.newsletter-input {
    display: block;
    height: 43px!important;
    width: 100%;
    padding: 0.5rem;
    margin-right: 0.5rem;
    border: 1px solid #d1d5db!important;
    background-color: transparent;
    border-radius: 0 0.25rem 0.25rem 0!important;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-input:focus {
    border-color: #007bff;
}

.newsletter-submit {
    width: 40%;
}

.newsletter-button {
    width: 100%;
    outline: none;
    border: 1px solid #f6f6f6!important;
    font-weight: 600;
    border-radius: 0.5rem;
    background-color: #000000!important;
    color: white;
    padding: 0.9rem 0.5rem;
    transition: opacity 0.2s;
}

.newsletter-button:hover {
    opacity: 0.75;
}

.newsletter-success {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.newsletter-success-message {
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: #38a169;
}

.newsletter-return-home {
    margin-top: 0.25rem;
}

.newsletter-item {
    border: 1px solid #ccc;
    padding: 10px;
    height: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.newsletter-item-info {
    margin-right: 6px;
    flex-grow: 1;
}

.form-check-input[type=checkbox] {
    width: 1.25em;
    height: 1.25em;
    margin-top: -0.3rem;
}

.loader {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
    margin-top: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.newsletter-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}