#email-pref-plugin-wrapper {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -100px;
    padding: 0 12px;
}

#email-pref-plugin-inner-section {
    width: 70%;
}

#subscription-form .field-input {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 12px 0;  
}

#subscription-form .field-input .preference, #subscription-form .field-input #unsubscribe-all {
    width: 16px;
    height: 16px;
}

#label-unsubscribe-all {
    display: inline;
    position: relative;
    width: 90%;
}

#label-unsubscribe-all span {
    position: absolute;
    top: 12px;
    left: 0;
    display: block;
    width: fit-content;
    margin-top: 2px;
    word-break:keep-all;
}


#submit-button {
    margin-top: 32px;
    padding: 10px 25px 10px 25px;
    color: #130C34;
    background-color: #1EE66E;
    font-weight: 600;
    border-radius: 25px;
    border:none;
}

#submit-button:hover,
#submit-button:active {
    background-color: #1ee66ebe;
}

#notification-message {
    margin-top: 16px;
    padding: 5px 10px;
    width: fit-content;
    background-color: rgb(230, 238, 231);
}

#invalid-message {
    margin-top: 16px;
        padding: 5px 10px;
        width: fit-content;
        background-color: rgb(243, 220, 220);
}

@media(max-width: 700px) {

    #email-pref-plugin-wrapper {
        margin-top: 0;
    }

    #email-pref-plugin-inner-section {
            width: 100%;
            padding: 0 5px 0 5px;
        }

    #submit-button {
        margin-top: 48px;
       
    }
}

@media(max-width: 386px) {
    #label-unsubscribe-all span {
        top: 24px;
    }
}
