.section2-customerSubscription{
    text-align: center;
}

.customerSubscription-main-content{
    text-align: justify;
    font-size: 16px;
    max-width: 85%;
    margin: 15px auto 0;
}

.customerSubscription-main-content-text p{
    margin-bottom: 15px;
}

.customerSubscription-form-container{
    text-align: justify;
    font-size: 16px;
    max-width: 85%;
    margin: 15px auto;
    padding-left: 95px;
}

.customerSubscription-options-container{
    display: flex;
    .customerSubscription-options{
        margin-left: 10px;
        label {
            font-weight: normal;
            margin-right: 30px;
        }
    }
}

.customerSubscription-terms{
    text-align: justify;
    font-size: 16px;
    max-width: 85%;
    margin: 30px auto;
    padding-left: 15px;
    .checkbox {
        margin-bottom: 20px;
        a {
            color: #337ab7;
        }
    }
    input{
        height: 16px;
    }
}

.customerSubscription-submit{
    font-size: 16px;
    color: #ffffff;
    background-color: #337ab7;
    border: #337ab7;
    border-radius: 8px;
    height: 45px;
    width: 170px;
    margin-bottom: 30px;
}

.customerSubscription-submit:hover{
    background-color: #F39D00;
}

.customerSubscription-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.customerSubscription-footer{
    text-align: justify;
    font-size: 12px;
    max-width: 85%;
    margin: 0 auto 15px;
    padding-top: 15px;
    padding-left: 15px;
    border-top: 1px solid #ddd;
}

@media (max-width: 767px){
    .section2-customerSubscription{
        margin-top: 50px;
    }
    .customerSubscription-main-content{
        max-width: 100%;
    }
    .customerSubscription-form-container{
        padding-right: 15px;
        padding-left: 35px;
        max-width: 100%;
    }
    .customerSubscription-terms{
        padding-right: 15px;
        max-width: 100%;
    }
    .customerSubscription-footer{
        max-width: 100%;
    }
}