*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    color: #202020;
}

a {
    color: #286DCB;
}

a:hover {
    color: #007bff;
}

.logo img {
    width: 150px;
    margin: 0 0.5rem 0.5rem 0;
}

.logo .heading {
    font-family: 'Bungee Inline', cursive;
    font-size: 24px;
}

.btn-primary {
    background-color: #286DCB;
}

.btn-primary.focus, .btn-primary:focus, .btn.focus, .btn:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: unset;
}

.bg-img {
    background: url('../images/background.png') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#cover {
    background: #fff;
    width: 33%;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    position: relative;
}

#cover-caption {
    width: 100%;
    position: relative;
    z-index: 1;
}

.sub-content {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.otp.sub-content {
    font-size: 13px;
    font-weight: 400;
}

.form-control:focus {
    border-color: #ced4da;
    outline: unset;
    box-shadow: unset;
}

.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #eee;
    opacity: 1;
    /* Firefox */
    font-size: 13px;
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #eee;
    font-size: 13px;
}

.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #eee;
    font-size: 13px;
}

.form-group {
    margin-bottom: 0.5rem;
}

.form-group label {
    margin: 0;
    color: #505050;
    font-size: 12px;
    font-weight: 500;
}

.form-group label.error {
    color: #ff0000;
    font-size: 11px;
}

.form-group .input-group-prepend {
    width: 40px;
}

.input-group-prepend .input-group-text {
    padding: 5px 10px;
    justify-content: center;
    background-color: transparent;
}

.form-group .toggle-password {
    border: 1px solid #ced4da;
    border-left: 0;
    border-bottom-right-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    padding: 8px;
    cursor: pointer;
}

.form-row {
    font-size: 13px;
}

.form-row a {
    font-weight: 500;
}

.form-row .form-check input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-row .form-check label {
    position: relative;
    cursor: pointer;
}

.form-row .form-check label:before {
    content: '';
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #ddd;
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 4px;
}

.form-row .form-check input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 8px;
    width: 7px;
    height: 12px;
    border: solid #286DCB;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.action-btn .btn {
    font-size: 14px;
    padding: 0.4rem 1.7rem;
}

.otp.action-btn a {
    color: #007bff;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.otp.action-btn .otp-countdown {
    font-size: 13px;
}

.footer {
    font-size: 12px;
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
}


@media screen and (max-width: 992px) {
    #cover {
        width: 44%;
    }
}

@media screen and (max-width: 768px) {
    #cover {
        width: 55%;
    }
}

@media screen and (max-width: 576px) {
    #cover {
        width: 66%;
    }
}

@media screen and (max-width: 480px) {
    #cover {
        width: 77%;
    }
}

@media screen and (max-width: 380px) {
    #cover {
        width: 88%;
    }
}

@media screen and (max-width: 320px) {
    #cover {
        width: 100%;
    }
}
