@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

*, *:before, *:after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: -webkit-linear-gradient(left, #7579ff, #b224ef);
    font-family: 'Prompt', sans-serif;
}

/*===============================
        Login Form
=================================*/
input, button {
    border: none;
    outline: none;
    background: none;
}
.cont-box {
    overflow: hidden;
    position: relative;
    width: 900px;
    height: 550px;
    background: #fff;
    border-radius: 10px;
}
.form {
    position: relative;
    width: 640px;
    height: 100%;
    padding: 70px 30px;  
}
.form h3 {
    width: 100%;
    font-size: 30px;
    text-align: center;
    color: #333;
    letter-spacing: 2px;    
}
label {
    display: block;
    width: 260px;
    margin: 28px auto;
    text-align: left;
    letter-spacing: 1px;
}
label span {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
}
.form input {    
    display: block;
    width: 100%;
    margin-top: 5px;
    font-size: 1rem;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(109, 93,93,0.4);  /*underline input*/
}
button {
    display: block;
    margin: 0 auto;
    width: 260px;
    height: 36px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;     
       
}
.submit {
    color: #fff;
    margin-top: 40px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    background: -webkit-linear-gradient(left, #7579ff, #b224ef);
      
}
.submit:hover {
    background: -webkit-linear-gradient(left, #b224ef, #7579ff);
}
.forget-pass {
    margin-top: 15px;
    text-align: center;
}
.forget-pass a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    font-weight: 400;
}
.forget-pass a:nth-child(1) {
    display: none;
}
.forget-pass span {
    display: none;
}
.forget-pass a:hover {
    color: red;
}
.ft {
    margin-top: 10%;
    text-align: center;
    font-size: .9rem;
    font-weight: 400;
    color: #333;
}
.sub-cont-box {
    overflow: hidden;
    position: absolute;
    left: 640px;
    top: 0;
    width: 900px;
    height: 100%;
    padding-left: 260px;
    background: #fff;
}
.img-login {
    overflow: hidden;
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
    width: 260px;
    height: 100%;
    padding-top: 360px;
}
.img-login::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 900px;
    height: 100%;
    background: url(../img/bg05.jpg);
    background-size: cover;    
}
.img-login::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}
.img-logintext {
    z-index: 2;
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    color: #fff;
}
.img-logintext h3 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 400;
}
.img-logintext p {
    font-size: .9rem;
    line-height: 1.5;
}
.img-logintext a {
    margin-top: 100%;
}


/* Medium (md) devices (tablets, less than 768px) */
@media (max-width: 768px) {
    .cont-box {
        width: 650px;
        height: 550px;
    }
    .form {
        width: 400px;
    }
    .sub-cont-box {
        left: 400px;
    }
}
/*Small (sm) devices (landscape phones, less than 576px)*/
@media (max-width: 576px) {
    .cont-box {
        width: 300px;
        height: 550px;
    }
    .form {
        width: 300px;
    }
    .sub-cont-box {
        display: none;
    }
    .forget-pass a:nth-child(1) {
        display: inline-block;
    }
    .forget-pass span {
        display: inline-block;
    }
    .form input {    
        display: block;
        width: 95%;
        margin-top: 5px;
        font-size: 1rem;
        padding-bottom: 5px;
        border-bottom: 1px solid rgba(109, 93,93,0.4);  /*underline input*/
    }
    .submit {        
        width: 100%;
    }
}

/*===============================
           Regis Form
=================================*/
input, button {
    border: none;
    outline: none;
    background: none;
}
.form-regis {
    position: relative;
    width: 640px;
    height: 100%;
    padding: 40px 30px;
}
.form-regis h3 {
    width: 100%;
    font-size: 30px;
    text-align: center;
    color: #333;
    letter-spacing: 1px;   
}
.form-regis p {
    display: none;
}
.form-regis span {
    display: block;
    width: 260px;
    margin: 5px auto;
    text-align: left;
    letter-spacing: 1px;
    font-size: .9rem;
}
.custom-select {
    margin: 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(109, 93,93,0.4); 
    font-size: .7rem;
    text-transform: uppercase;
}
.form-regis input {    
    display: block;
    width: 100%;
    font-size: 1rem;
    border-bottom: 1px solid rgba(109, 93,93,0.4);  /*underline input*/
}
.form-regis input::placeholder {
    font-size: .7rem;
    color: #808080;
    text-transform: uppercase;
}
.form-regis button {
    margin-top: 15px;
}


/* Medium (md) devices (tablets, less than 768px) */
@media (max-width: 768px) {
    .cont-box {
        width: 650px;
        height: 550px;
    }
    .form-regis {
        width: 400px;
        padding: 50px 20px;
    }
    .form-regis h3 {
        font-size: 20px;
    }
    .form-regis span {
        width: 260px;
        margin: 5px auto;
        text-align: left;
        letter-spacing: 1px;
        font-size: .7rem;
    }
    .form-regis input {    
        font-size: .7rem;
        border-bottom: 1px solid rgba(109, 93,93,0.4);  /*underline input*/
    }
    .form-regis input::placeholder {
        font-size: .4rem;
    }
    .custom-select {
        font-size: .3rem;
    }

}
/*Small (sm) devices (landscape phones, less than 576px)*/
@media (max-width: 576px) {
    .cont-box {
        width: 300px;
        height: 630px;
    }
    .form-regis {
        width: 300px;
        padding: 50px 30px;        
    }
    .form-regis span {
        margin: 0 auto;
        text-align: left;
        letter-spacing: 1px;
        font-size: .5rem;
    }
    .form-regis button {
        margin: 15px auto;
        width: 100%;
    }
    .form-regis .signin a{
        display: inline-block;
        
    }
    input {    
        display: block;
        width: 95%;
        margin-top: 5px;
        font-size: 1rem;
        padding-bottom: 5px;
        border-bottom: 1px solid rgba(109, 93,93,0.4);  /*underline input*/
    }
    .submit {        
        width: 100%;
    }    
}

/*============ BOOTSTRAP BREAK POINTS:

Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

=============*/











