
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    min-height:100vh;

    background:url('../images/background.png') center center no-repeat;
    background-size:100% 100%;
}
/* Floating Leaves */

.leaf{
    position:absolute;
    color:#6ab04c;
    opacity:.25;
    animation:float 15s linear infinite;
}

.leaf:nth-child(1){
    left:10%;
    font-size:40px;
    animation-delay:0s;
}

.leaf:nth-child(2){
    left:30%;
    font-size:25px;
    animation-delay:3s;
}

.leaf:nth-child(3){
    left:60%;
    font-size:35px;
    animation-delay:6s;
}

.leaf:nth-child(4){
    left:80%;
    font-size:30px;
    animation-delay:9s;
}

@keyframes float{
    from{
        transform:translateY(-100px) rotate(0deg);
    }
    to{
        transform:translateY(120vh) rotate(360deg);
    }
}

.container{
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    /*padding:20px;*/
}

.card{
    width:420px;
    max-width:100%;
    background:transparent;/*rgba(255,255,255,.85);*/
    backdrop-filter:blur(5px);
    border-radius:30px;
    padding:40px;
    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.logo{
    text-align:center;
}

.tree{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#5ca941;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:38px;
}

.logo h1{
    margin-top:15px;
    color:#3f8d34;
    font-size:38px;
    font-weight:600;
}

.logo p{
    color:#777;
    margin-top:10px;
}

.welcome{
    text-align:center;
    margin:35px 0;
    margin-top:0px;
}

.welcome h2{
    color:#2f6f28;
}

.form-group{
    margin-bottom:20px;
    position:relative;
}

.form-group input, .form-group select{
    width:100%;
    padding:16px 50px;
    border:none;
    outline:none;
    border-radius:50px;
    background:#f4f7f2;
    font-size:15px;
}

.form-group i{
    position:absolute;
    top:18px;
    left:20px;
    color:#6ab04c;
}

.forgot{
    text-align:right;
    margin-bottom:25px;
}

.forgot a{
    color:#5ca941;
    text-decoration:none;
}

.login-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:50px;
    background:#5ca941;
    color:white;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.login-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(92,169,65,.35);
}

.divider{
    text-align:center;
    margin:25px 0;
    color:#999;
}

.otp-btn{
    width:100%;
    padding:14px;
    border-radius:50px;
    border:2px solid #5ca941;
    background:white;
    color:#5ca941;
    cursor:pointer;
    font-weight:600;
}

.register{
    text-align:center;
    margin-top:25px;
}

.register a{
    color:#5ca941;
    text-decoration:none;
    font-weight:600;
}

.footer-icons{
    display:flex;
    justify-content:space-between;
    margin-top:35px;
    text-align:center;
}

.footer-icons div{
    flex:1;
}

.footer-icons i{
    font-size:28px;
    color:#5ca941;
    margin-bottom:10px;
}

.footer-icons p{
    color:#555;
}

@media(max-width:500px){

.card{
    padding:30px 20px;
}

.logo h1{
    font-size:30px;
}

}