﻿html {
    /*background: url(../images/bg-image.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;*/
}

body {
    font-family: 'Noto Sans', sans-serif !important;
    font-size: 18px;
}

.voffset {
    margin-top: 15px;
}

.content {
    width: 960px;
    height: 580px;
    background-color: white;
    position: fixed; /*Can also be `absolute`*/
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    /*Solves a problem in which the content is being cut when the div is smaller than its' wrapper:*/
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    border-radius: 4px;
    color: #231816;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
    padding: 2rem 4rem;
}
.content::-webkit-scrollbar {
    display:none;
}
.content {
    -ms-overflow-style: none; /*IE and Edge*/
    scrollbar-width: none; /*Firefox*/
}
.content p {
    font-size: 16px;
    padding-top: 15px;
}

.brand-intro {
    padding-right: 25px;
    border-right: 1px solid #eee;
}

.login {
    padding: 25px 0 25px 25px;
}
.register {
    padding: 5px 0 0 25px;
}
.register form label {
    font-weight: normal;
    font-size: 0.75rem;
}
.register .form-control {
    height: 35px;
    font-size: 0.85rem;
}
.register .form-group {
    margin-bottom: 0.5rem;
}
.login h2 {
    margin-bottom: 25px;
    font-size:1.5rem;
}
.login h3 {
    font-size:1.3rem;
}
form label {
    font-weight:normal;
    font-size:16px;
}
.login .form-control {
    height: 40px;
}

.form-control:focus {
    box-shadow: none;
    border-color: inherit;
}

.form-check-input {
    width: 16px;
    height: 16px;
}

.checkbox .remember-me {
    font-size: 16px;
}

.forgot a {
    color: #231816 !important;
    text-decoration:underline;
    font-size:16px;
}

.btn-danger {
    height: 40px;
    background-color: #002967;
    border-color: #002967;
    font-size: 18px;
    min-width:100px;
}

.btn-danger:focus,
.btn-danger:active,
.btn-danger:hover,
.btn-danger:disabled {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background-color: #3f4e54 !important;
    border-color: #3f4e54 !important;
}

.text-danger {
    font-size:14px;
}
.required {
    border:1px solid #002967;
}

.account-confirmation {
    border: 2px solid #0d631f;
    border-radius:8px;
}
/*============Modal============*/
.modal-header {
    background: #eee;
    border-radius: 5px 5px 0 0;
}
.modal-body .form-control {
    height: 40px;
}

.modal-body .btn-danger {
    border: none;
    font-size: 17px;
    text-transform: capitalize;
    background-color: #002967;
    color: #fff;
}

.modal-body button {
    min-width: 100px;
    height: 40px;
}

.toast-container {
    position:relative;
}
.toast-container .toast {
    position:absolute;
    top:0;
    right:0;
}
.toast-container .toast-body {
    background-color:#fff;
}

.intl-tel-input {
    width:100%;
}
ul.country-list {
    width:375px;
}
@media only screen and (max-device-width:480px) {
    .content {
        padding: 2rem 1rem;
    }

    .brand-intro {
        padding-right: 0;
        border-right: none;
    }

    .login {
        padding: 0;
    }

    .btn-danger {
        width: 100%;
    }
}
