@charset "utf-8";
/* CSS Document */
*{

margin:0;

padding:0;

box-sizing:border-box;

font-family:Poppins,sans-serif;

}

body{

background:#F4F6F9;

display:flex;

justify-content:center;

align-items:center;

height:100vh;

}

.login-container{

width:100%;

display:flex;

justify-content:center;

}

.login-card{

width:430px;

background:white;

border-radius:18px;

padding:40px;

box-shadow:0 10px 35px rgba(0,0,0,.12);

}

.logo{

text-align:center;

margin-bottom:35px;

}

.logo img{

width:90px;

margin-bottom:15px;

}

.logo h1{

font-size:40px;

color:#0B6B3A;

}

.logo h2{

font-size:22px;

margin-top:5px;

color:#333;

}

.logo p{

margin-top:10px;

color:#777;

font-size:14px;

}

label{

display:block;

margin-bottom:8px;

margin-top:18px;

font-weight:600;

}

.input{

display:flex;

align-items:center;

border:1px solid #DADADA;

border-radius:10px;

overflow:hidden;

}

.input i{

width:55px;

text-align:center;

color:#666;

}

.input input{

border:none;

height:50px;

width:100%;

padding:0 10px;

outline:none;

font-size:15px;

}

.remember{

margin:18px 0;

font-size:14px;

}

button{

width:100%;

height:50px;

border:none;

border-radius:10px;

background:#0B6B3A;

color:white;

font-size:17px;

cursor:pointer;

transition:.3s;

}

button:hover{

background:#084F2A;

}

.footer{

margin-top:30px;

font-size:13px;

text-align:center;

color:#666;

}