/* @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;500;600;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap');
:root {
	--primary: rgba(37, 37, 37, 1.0);
	--secondary: rgba(252, 41, 74, 1.0);
	--shades: rgba(238, 238, 238, 1.0);
}
* {
	scroll-behavior: smooth;
}

body {
	/* font-family: 'Oswald', sans-serif; */
    font-family: 'Cairo', sans-serif;
	line-height: 1.6;
	margin: 0;
    font-weight: 400;
}
h1, h2,h3,h4,h5,h6{
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
}
h1{font-size: 48px;}
h2{font-size: 36px;}
h3{font-size: 30px;}
h4{font-size: 24px;}
h5{font-size: 18px;}
h6{font-size: 16px;}

.mylogin {
    margin: 0;
    position: relative;
}
.login-header {
    background: #000;
    position: relative;
    padding: 8px 0 4px;
    border-bottom: 2px solid #eee;
    /* border-image: linear-gradient(to right, #999, #fff, #999);
    border-bottom-width: 12px;
    border-bottom-style: solid; */
}
.header-support {
    text-align: right;
    color: #fff;
    margin: 0;
}
.header-support a{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.login-slider {
    overflow: hidden;
}
.login-content {
    padding-bottom: 25px;
}
.mylogin-area {
    position: relative;
    margin: 0 auto;
    margin-top: -120px;
    z-index: 999;
    width: 100%;    
    max-width: 350px;
}
.mylogin-area .login-brand{
    text-align: center;
    margin-bottom: 15px;
}
.mylogin-area .login-brand img{
    width: 100%;
    height: auto;
    max-width: 140px;
}
.mylogin-box {
    position: relative;
    background: url(../img/login-bg.jpg) top center no-repeat;
    background-size: cover;
    padding: 20px 40px;
    text-align: center;
    border-radius: 30px;
    box-shadow:  0 0 12px rgba(0, 0, 0, 0.60);
}
.mylogin-box .user-icon img{
    width: 100%;
    height: auto;
    max-width: 70px;
    opacity: 0.3;
}
.mylogin-box .form-control{
    border-radius: 25px;
    height: 30px;
    line-height: 20px;
    font-size: 14px;
    box-shadow: none;
    border: none;
}
.mylogin-box .form-control:focus{
    box-shadow: none;
    border: none;
}
.mylogin-box .input-group-text {
    background: #111b3e;
    color: #fff;
    height: 36px;
    border-radius: 25px 0 0 25px;
    border-color: #111b3e;
}
.mylogin-box .form-group{
    margin-top: 5px;
    margin-bottom: 10px;
}
.mylogin-box .form-group label{
    color: #fff;
    font-size: 12px;
}
.mylogin-box .refresh{
    font-size: 12px;
    color: #eee;
}
.mylogin-box .refresh a{
    color: rgb(62, 198, 252);
    padding: 0 5px;
}
.mylogin-btn {
    width: 100%;
    background: rgba(0, 0, 0, 0.40);
    padding: 6px 15px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    margin: 15px 0 2px;
    border: 0;
    box-shadow: none;
    outline: none;
    border-radius: 15px;
    transition: all 0.3s;
    text-transform: uppercase;
}
.mylogin-btn:hover{
    background: rgba(0, 0, 0, 0.70);
}
.mylogin-box .form-check {
    padding-left: 10px;
    text-align: left;
}
.mylogin-box .form-check-input {
    margin-top: 6px;
    background: rgba(0, 0, 0, 0.60);
    border-radius: 50%;
    outline: none;
    border-color: rgba(0, 0, 0, 0.60);
}
.mylogin-box .form-check-input:focus {
    outline: none;
    box-shadow: none;
}
.forget-pass {
    text-align: right;
    margin: 0;
    padding: 4px 0 0;
    font-size: 12px;
}
.forget-pass a{
    color: #fff;    
}

.login-footer {
    text-align: center;
    padding: 10px 0;
    background: #eee;
}
.login-footer p{
    color: rgb(83, 93, 180);  
    font-size: 14px; 
    margin: 0;
}

@media (max-width:768px){
    .mylogin-area .login-brand {
        margin-bottom: 2px;
      }
    .mylogin-area {
        margin-top: -40px;
    }
    .mylogin-area .login-brand img {
        max-width: 90px;
      }
      .login-content {
        background-position: 150% 87%;
        background-size: 50%;
        padding-bottom: 40px;
      }
}

