*{
    padding: 0;
    margin: 0;
}
body{
    background-image: url(../img/login.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}
body:before{
    content: '';
    width: 100%;
    min-height: 100vH;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg,#ffffff,#e97dff);
    opacity: 0.3;
}
.login-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}
.login-card{
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 15vh;
    background-color: rgba(0,0,0,.2);
    border-radius: 10px 10px 10px 10px;
    /* border: 1px solid rgba(0, 0, 0, 0.205); */
    box-shadow: 2px 2px 23px 8px rgba(0,0,0,0.72);
    -webkit-box-shadow: 2px 2px 23px 8px rgba(0,0,0,0.72);
    -moz-box-shadow: 2px 2px 23px 8px rgba(0,0,0,0.72);
    z-index: 0;
}
.login-header{
    position: absolute;
    width: 100%;
    height: 60%;
    background-color: rgba(0,0,0,.2);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 30%);
    border-radius: 10px 10px 0px 0px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}
.login-header img{
    width: 180%;
    /* border-radius: 0px 10px; */
    z-index: 3;
}
.login-body{
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 85%;
    height: auto;
    max-height: 50%;
    padding: 20px 0;
    background-color: #fdfcfc;
    border-radius: 10px 10px 10px 10px;
    margin: auto;
    margin-top: 40%;
    z-index: 2;
    margin-bottom: 10%;
}
.login-body a{
    display: block;
    text-align: right;
    font-size: 10px;
    color: #000000;
    text-decoration: none;
}
.login-body .form-control-icon {
    position: absolute;
    padding: 10px 10px;
    pointer-events: none;
    color: #a3a3a3;
}
.login-body input.form-control {
    padding-left: 35px!important;
    border: 0px;
    background: #fdfcfc;
    border-radius: 0;
    border-bottom: 1px solid #707070!important;
    box-shadow: initial!important;
}
.login-icon{
    position: relative;
    width: 100%;
    height: 20px;
    display: block;
    text-align: center;
}
.login-icon label{
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fdfcfc;
    display: flex;
    justify-content: center;
    align-items: center;
    right: calc(50% - 35px);
    top: -65px;
}
.login-icon label>i{
    font-size: 30px;
    color: #a3a3a3;
}
.login-body p.login-res{
    text-align: center;
    height: 13px;
    font-size: 12px;
    margin-top: 1px;
}