// login page

.login-body{
    margin: 0;
    padding:0;
    width: 100%;
    height:100vh;
    // background: #000;
}
.login-form{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 480px;
    padding: 90px 45px 60px 45px;
    @media #{$xs}{
        width: 340px;
        padding: 90px 15px 15px 15px;
    }
    transform: translate(-50%,-50%);
    background: rgba(0,0,0,0.4);
    box-shadow: 0 15px 20px rgba(0,0,0,.2);
    border-radius: 5px;
    .logo-login{
        img{
            width: 99px;
            height: 95px;
            // border-radius: 50%;
            position: absolute;
            top: -45px;
            left: 0;
            right: 0;
            margin: 0 auto;
            border: 5px solid rgba(255,255,255,0.1);
            box-shadow: 0 10px 10px rgba(0,0,0,0.4);
            border-radius: 50%;
            background-color: white;
        }
    }
    h2{
        color: #fff;
        font-size: 30px;
        margin: 0;
        text-align: center;
        font-weight: 600;
        // margin-bottom: 20px;
    }
    .form-input{
        position: relative;
        margin:5px 0;        
        label{
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0px;           
        }
        input{
            font-size: 14px!important;
            outline: none;
            height: 15px;
            padding: 5px 5px 15px 5px;
            box-sizing: border-box;
            width: 100%;
            border: 1px solid rgba(0,0,0,.5);
            background: transparent;            
            border: none;
            color: #fff;
            border-bottom: 1px solid #fff;
            &::placeholder{
                color: #fff;
            }            
        }
        input[type="submit"]{
            font-size: 18px!important;
            height: 40px;
            background: #fff;
            padding: 0!important;
            color: #000;
            border: none;
            cursor: pointer;
            text-transform: capitalize;
            line-height: 1;
            font-size: 18px;
            font-weight: 700;
            border-radius: 20px;
            transition: .4s;
            &:hover{
                background: #000;
                background: #fff;
            }
        }
    }
    .forget{
        display: block;
        margin-top: 30px;
        color: #fff;
        font-weight: 600;
        text-decoration: underline;
        margin-bottom: 5px;
        &:hover{
            color: #fff;
        }
    }
    .registration{
        display: block;
        color: #fff;
        font-weight: 600;
        text-decoration: underline;
        margin-bottom: 5px;
        &:hover{
            color: #fff;
        }
    }
    .error{
      font-size: 13px!important;
      color: $theme-color3!important;
    }
    input:-webkit-autofill,
    input:-webkit-autofill:hover, 
    input:-webkit-autofill:focus,
    textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus,
    select:-webkit-autofill,
    select:-webkit-autofill:hover,
    select:-webkit-autofill:focus {
      //border: 1px solid green;
      //-webkit-text-fill-color: green;
      font-size: 14px;
      -webkit-text-fill-color: white;   
      transition: background-color 5000s ease-in-out 0s;
    }
}

// .form-control:focus {
// 	color: #495057;
// 	background-color: none !important;
// 	border-color: none !important;
// 	outline: 0 !important;
//     box-shadow: 0
// }