@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
@charset "UTF-8";
@font-face {
    font-display: swap
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


*,
*::before,
*::after {
    box-sizing: border-box
}

html,
body,
header,
footer,
nav,
aside,
figure,
figcaption,
hgroup,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
ol,
p,
div,
strong,
span,
aside,
main {
    margin: 0;
    padding: 0
}
body {
    height: 100vh;
}
h1{
    display: block;
    font-size: 2rem;
    line-height: 1.6;
    color: #fff;
    padding-top: 1rem;
    font-weight: 600;
    text-align: center;
}
.wrapper{
    display: block;
    position: relative;
    width: 100%;
    background:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}
.wrapper::after{
    content: '';
    /*background: rgba(12, 9, 16, 0.57);*/
    position: absolute;
    top: 0;
    min-height: 100%;
    left: 0;
    right: 0;
}
.wrapper .container{
    position: relative;
    z-index: 1;
}
.clear{
    clear: both;
}
.login-container {
    width: 100%;
    max-width: 530px;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 auto;
}
.mainimgbg{
    display: block;
    border-radius: 0 0 360px 360px;
    z-index: 0;
    position: relative;
    background: url(../images/bannernet.jpg) no-repeat center;
    background-size: cover;
}
.mainimgbg::before{
    content: "";
    background: rgba(43, 32, 34, 0.42);
    position: absolute;
    top: 0;
    min-height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    border-radius: 0 0 300px 300px;
}
.toptitle{
    display: block;
    padding-top: 3em;
    padding-bottom: 3em;
    font-size: 24px;
    line-height: 30px;
    color: #fff;

}
.usericon{
    display: block;
    position: relative;
    text-align: center;
    margin-top: -30px;
}
.usericon .icon{
    width: 60px;
    height: 60px;
    background: #fff;
    border: 4px solid rgba(99, 85, 87, 0.19);
    border-radius: 50%;
    margin: 0 auto;
}
.usericon .icon img{
    margin-top: 12px;
}
.bottomcontent{
    display: block;
    padding: 0px 35px 35px;
}
.wrapper input[type='text'],
.wrapper input[type='password']{
    display: block;
    width: 100%;
    margin: 0.5rem 0;
    padding: 0 15px;
    line-height: 48px;
    border: 1px solid #dedddd;
    outline: none;
    border-radius: 4px;
    color: #666;
}
.wrapper select{
    display: block;
    width: 100%;
    margin: 0.5rem 0;
    padding: 0 15px;
    line-height: 48px;
    height: 48px;
    border: 1px solid #dedddd;
    outline: none;
    border-radius: 4px;
    color: #666;
}
.wrapper input[type='submit']{
    display: block;
    width: 100%;
    margin: 1rem 0;
    padding: 0 15px;
    line-height: 56px;
    border: none;
    outline: none;
    border-radius: 4px;
    color: #fff;
    background: #E9706E;
    font-weight: 600;
}
.bottomcontent p{
    display: block;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    font-weight: normal;
}
.bottomcontent .row{
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.bottomcontent [class*='col-']{
    padding-left: 7.5px;
    padding-right: 7.5px;
}
@media screen and (max-width:430px){
    .toptitle {
        padding-top: 1.5em;
        padding-bottom: 1.5em;
    }  
}