/* Opt-Out Page Styles */

/* Apply background to the main content area of this specific template */
.opt-out-page {
    background-color: #f8f9fc; /* Light grey-blue background */
    padding: 40px 15px; /* Add padding around the container */
    box-sizing: border-box;
}

/* Styles for the centered white container */
.opt-out-container {
    background: white;
    max-width: 650px; /* Slightly wider perhaps */
    margin: 20px auto; /* Vertical margin, auto horizontal for centering */
    padding: 30px 40px; /* Padding inside the container */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Slightly softer shadow */
    text-align: center; /* Center align text within the container */
}

/* Title */
.opt-out-title {
    color: #1f355f; /* Dark blue */
    font-size: 1.8rem; /* Adjust as needed */
    font-weight: bold;
    margin-bottom: 15px;
}

/* Description paragraph */
.opt-out-description {
    color: #555; /* Medium grey */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%; /* Limit width */
    margin-left: auto;
    margin-right: auto;
}

/* Form specific styling */
.opt-out-actual-form {
    margin-top: 20px;
}

.opt-out-form-group {
    margin-bottom: 20px;
    text-align: left; /* Align labels left */
}

.opt-out-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #333;
}

.opt-out-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box; /* Include padding/border in width */
}

.opt-out-input:focus {
    border-color: #00c2cb; /* Highlight focus */
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 194, 203, 0.2);
}

.opt-out-required-note {
    font-size: 0.8rem;
    color: #777;
    text-align: left;
    margin-top: -10px; /* Adjust spacing */
    margin-bottom: 20px;
}

.opt-out-submit-wrap {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 25px;
}

/* Specific button for unsubscribe */
.unsubscribe-button {
    background-color: #4285f4; /* Google blue - adjust if needed */
    color: white;
    border: none;
    padding: 12px 35px; /* Generous padding */
    border-radius: 50px; /* Pill shape */
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.unsubscribe-button:hover {
    background-color: #3367d6; /* Darker blue */
}

/* General button class if needed */
.btn {
    text-decoration: none;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin: 5px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    border: 1px solid transparent; 
    transition: all 0.3s ease;
}

/* Ensure specificity if needed */
.opt-out-submit-wrap .unsubscribe-button {
    /* Overrides for .btn if necessary */
     border-radius: 50px; 
     padding: 12px 35px;
     font-size: 1rem;
}


.opt-out-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
    margin-top: 20px;
    text-align: center; /* Center disclaimer */
}

/* Responsive adjustments if needed */
@media (max-width: 600px) {
    .opt-out-container {
        padding: 20px;
    }
    .opt-out-title {
        font-size: 1.5rem;
    }
    .unsubscribe-button {
         padding: 10px 25px;
         font-size: 0.9rem;
    }
}