/* Global Prefix
'slp' - Subscription Billing Page
*/

.slp-page__wrapper {
    background-color: #F2F2F2;
    height: 100%;
    min-height: 100vh;
    padding: 10px;
}

.slp-section, .slp-footer {
    margin: 0 auto;
    max-width: 450px;
    padding: 15px;
    background-color: #fff;
}

.slp-section {
    border-bottom: 2px solid #d2d2d2;
    border-radius: 2px;
}

.slp-footer {
    background-color: #F2F2F2;
}

.slp-page__logo {
    display: block;
    margin: 15px auto;
    width: 120px;
    height: auto;
}

.slp-avatar {
    width: 120px;
    height: 120px;
    margin: 25px auto;
    /*background-image: url(../img/subscription/avatar.png);*/
    -webkit-background-size:cover;
    background-size:cover;
    background-repeat: no-repeat;
    background-position: top center;
    border-radius: 50%;
}

.slp-title {
    color: #222222;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
}

.slp-text {
    color: #555;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    margin: 30px 0;
}

.slp-login__button {
    background-color: #0CB549;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    border: none;
    border-radius: 3px;
    padding: 14px 15px 15px 15px;
    display: block;
    width: 100%;
    margin: 0 auto 15px auto;
    text-decoration: none;
}

.slp-login__link:hover {
    text-decoration: none;
}

.slp-footer__info {
    color: #ccc;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    margin: 0;
}

@media all and (min-height: 600px) {
    .slp-page__wrapper {
        padding-top: 50px;
    }
}



