@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding: 0px;
    margin: 0px;
    font-family: 'poppins',sans-serif;
}
h2{
    margin-bottom: 25px;
}

body{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: url(Bg.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#loginbox{
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    width: 100%;
    backdrop-filter: blur(5px);
   -webkit-backdrop-filter: blur(10px);
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#left-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    width: 450px;
    height: 500px;  
    background: rgba(0, 0, 0, 0.6);
    padding-left: 10px;
}

#login{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 380px;
    height: 500px;
    background: rgba(0, 0, 0, 0.8);
}

input{
    
    color: white;
    background-color: transparent;
    outline: none;
    padding-left: 15px;
    border: none;
    margin-bottom: 10px;
    width: 300px;
    height: 50px;
    border-bottom: 2px solid #333;

}

input::placeholder{
font-size: 13px;
color: #ffffffff;}

input:focus{
    border-bottom: 2px solid rgba(255, 255, 255, 0.897);    

}

#submit{
    font-size: 15px;
    color: white;
    border: none;
    background-color: rgba(34, 139, 34, 0.8);
     border-radius: 10px;
    margin: 20px 20px;
    height: 45px;
    width: 300px;
}

#submit:hover{
    transition: 0.3s;
    cursor: pointer;
    background-color: #0f7a2a;
}

#left-box div h1{
    font-size: 30px;
    padding-bottom: 10px;
}

#left-box p{
    font-size: 14px;
    padding-bottom: 3px;
    margin-bottom: 5px;
}
#link{
    margin-top: 15px;
    transition: 0.3s ease;
}
#link a{
    color: white;
    font-size: 19px;
    font-weight: 700;
    padding-top: 20px;
    text-decoration: none;
    transition: 0.3s ease;
}

#sign{
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    width: 250px;
}

#sign a{
    font-size: 14px;
    text-decoration: none;
    color: rgba(34, 139, 34, 0.8);

}

#sign a:hover{
    text-decoration: underline;
}

#link a:hover{
    transform: scale(1.2);
    color: rgb(4, 159, 4);
}

#forget a{
    text-decoration: none;
    color: white;
    font-size: 13px;
}

#forget{
    width: 300px;
    display: flex;
    justify-content: end;
    margin-top: 10px;
}

#forget a:hover{
    text-decoration: underline;
}

#right_box{
    display: flex;
    background: rgba(0, 0, 0, 0.8);
    width: 120px;
}

.sep{
    display: flex;
    justify-content:flex-start;
    align-items: center;
    height: 50px;
}

.sep span{
    color: white;
}

img{
    width: 40px;
    height: 40px;
}

.div{
    width: 20px;
}

.sociallogin{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    margin-left: 20px;
    cursor: pointer;
}

