.accountbg {
    position: absolute;
    background-size: cover;
    height: 100%;
    width: 100%;
    top: 0;
    box-sizing: border-box;
}

.account-page-full {
    right: 0;
    top:0;
    position: absolute;
    height: 100%;
    margin: 0;
    width: 540px;
    background-color: #ffffff;
}

body {
    margin: 0;
    padding-bottom: 60px;
    overflow-x: hidden;
    font-size: 14px;
    background-color: #f3f6f8;
    font-family: "Roboto", sans-serif;
}

.promotionalLogin {
    display: block;
    margin-top: 17%;
}

.account-page-full .card {
    border: none;
    box-shadow: none;
}

label {
    font-size: 14px;
    color: #313a46;
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    margin-bottom: 10px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn {
    border-radius: 2px;
    font-size: 14px;
    outline: none !important;
    padding: .375rem 1.1rem;
}

.input-group-append {
    margin-left: -1px;
}

.input-group-append, .input-group-prepend {
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 768px) {
    .account-pages .account-page-full {
        width: 100%;
    }
}

.checkbox-warning {
    position: relative;
    padding-left: 30px;
}

.checkbox-warning input[type="checkbox"] {
    opacity: 0;
    position: relative;
}

.checkbox-warning label {
    position: relative;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-warning label::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #98a6ad;
    border-radius: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.checkbox-warning label::after {
    content: "";
    position: absolute;
    left: -25px;
    top: 5px;
    width: 10px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    opacity: 0;
    transition: all 0.3s ease;
}

.checkbox-warning input[type="checkbox"]:checked+label::before {
    background-color: #fac000;
    border-color: #fac000;
}

.checkbox-warning input[type="checkbox"]:checked+label::after {
    opacity: 1;
}

.form-control {
    font-size: 14px;
}