@font-face {
    font-family: Amazon;
    src: url('../fonts/Amazon-Ember-Regular.ttf');
}

@font-face {
    font-family: Amazon-light;
    src: url('../fonts/Amazon-Ember-Thin.ttf');
}
*{
    box-sizing:border-box;
}
html,body{
    /*font-family: Amazon;*/
    font-family: 'Comfortaa', cursive;
}
body{
    background:white;
    overflow-x: hidden;
}
img{
    object-fit: cover;
}
.custom-container{
    padding:0;
}
.custom-container.logo{
    padding:1% 5%;
}
.login-section .row{
    height: 100vh;
    display: flex;
    align-items: center;
}
.login-content{
    text-align: justify;
    background: #003467;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
    position: relative;
    overflow: hidden;
}
.login-content::after{
    content:'';
    height:100px;
    width:100px;
    border-radius: 100%;
    border:15px solid white;
    position: absolute;
    right:0;
    top: 20px;
    margin-right:-50px;
    background: #00e2fa;
}
.login-content img{
    margin-bottom:50px;
}
.login-content p{
    color:white;
    font-size: 18px;
    font-weight: 300;
    font-family: Amazon-light;
}
.login-content strong{
    font-weight: 600;
}
.login-form{
    padding:0 16%;
}
.login-form .heading {
    font-size: 20px;
    color: #003467;
    margin-bottom: 40px;
}
.login-form .form-control{
    border: 1px solid lightgrey;
    font-size: 14px;
    box-sizing: border-box;
    border-radius: 50px;
    height:40px;
}
.login-form .form-control::placeholder{
    color:lightgray;
    font-weight: 300;
}
.login-form .form-control:focus{
    outline: none;
    box-shadow: none;
    border: 1px solid #003467 ;
}
.login-form a{
    font-weight: 300;
    color:#003467;
}
.btn-login{
    color:white;
    transition: all 0.5s;
    font-size:14px;
    border-radius:50px;
    /*background: linear-gradient(to right, #003467 0%, #00e2fa 80%, #00e2fa 70%);*/
    background: #003467;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    height:45px;
    border:none;
}
.btn:hover{
    background: #003467;
}
.login-footer{
    position: fixed;
    color:#b5b4b4;
    bottom:0;
    width:100%;
    padding:1% 5%;
}
.login-footer .partner-section{
    border-bottom: 1px solid #9a9898;
    padding-bottom: 30px;
    margin-bottom: 10px;
}
.forgot-text{
    font-size: 14px;
}
.help-block{
    color: #690808;
    font-size: 12px;
}

@media screen and (max-width:767px){
    .login-section .row{
        display: inherit;
        height: inherit;
    }
    .login-content,.login-form{
        padding:40px;
    }
    .login-footer{
        position: inherit;
        text-align: center;
    }
}

@media screen and (max-width:850px) and (orientation: landscape){
    .login-footer{
        position: inherit;
    }
}

@media (max-width: 1640px) and (min-width: 1000px){
    .prtm-form-block {
        padding: 30px 30px 20px 30px!important;
    }
}







