.optout-widget * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.optout-widget .optout-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.optout-widget .header h1 {
    color: #ae3447;
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.optout-widget .description {
    color: #555;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.7;
}

.optout-widget .form-group {
    margin-bottom: 20px;
}

.optout-widget label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.optout-widget .section-label {
    margin-bottom: 12px;
}

.optout-widget .required {
    color: #ae3447;
}
.clear-multi {
	display: flex;
	width: 100%;
	justify-content: space-between;
	gap: 10px;
}

.optout-widget .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.optout-widget .form-control:focus {
    outline: none;
    border-color: #608eb8;
}

.optout-widget .form-control.error {
    border-color: #ae3447;
}

.optout-widget .error-message {
    color: #ae3447;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.optout-widget .error-message.show {
    display: block;
}

.optout-widget .checkbox-group {
    margin-bottom: 25px;
}

.optout-widget .checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.optout-widget .checkbox-wrapper input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.optout-widget .checkbox-wrapper label {
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
    flex: 1;
}

.optout-widget .disclaimer {
    background-color: #f9f9f9;
    padding: 20px;
    border-left: 4px solid #608eb8;
    margin: 30px 0;
    font-size: 13px;
    color: #555;
}

.optout-widget .disclaimer p {
    margin-bottom: 15px;
}

.optout-widget .disclaimer p:last-child {
    margin-bottom: 0;
}

.optout-widget .submit-btn {
    background-color: #0056a6;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.optout-widget .submit-btn:hover {
    background-color: #004080;
}

.optout-widget .submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.optout-widget .g-recaptcha {
    margin-bottom: 10px;
}

.optout-widget #recaptcha-error {
    margin-top: 5px;
}

.optout-widget .success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.optout-widget .verification-container {
    text-align: center;
}

.optout-widget .verification-code-input {
    text-align: center;
    font-size: 24px;
    letter-spacing: 10px;
    text-transform: uppercase;
    max-width: 300px;
    margin: 20px auto;
}

.optout-widget .verify-btn {
    background-color: #0056a6;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.optout-widget .verify-btn:hover {
    background-color: #004080;
}

@media (max-width: 768px) {
    .optout-widget .optout-container {
        padding: 20px;
    }

    .optout-widget .header h1 {
        font-size: 24px;
    }

    .optout-widget .submit-btn {
        padding: 12px 30px;
    }
}
