
/* universal style */

*{
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}

/* screen view */

.container{
    width: 100%;
    height: 100vh;
}
#main{
   background-color:#f2f4f7 ;
   height: 70vh;
   display: flex;
   align-items: center;
   flex-direction: column;
}

/* facebook logo  */

#logo{
    width: 180px;
    margin-top: 25px;
}

/* login box details start */

#login-box{
    width: 400px;
    height: 320px;
    /* border: 1px solid black;  */
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0px 2px 10px 1px rgba(71,71,71,0.52);
}
#login-text{
    text-align: center;
    margin: 20px 0;
    font-weight: 400;
    font-size: 18px;
}

/* form style */

form{
    display: flex;
    flex-direction: column;
    align-items: center;
}
input{
    width: 80%;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    border: .1px solid lightgray;
}
#button{
    display: flex;
    align-items: center;
    justify-content: center;  
}
#login{
   width: 350px;
   padding: 10px; 
   background-color:#1877F2 ;
   font-size: 20px;
   color: white;
   font-weight: 700;
   margin-bottom: 10px;
   border-radius: 6px;
   border: none;
}
#login:hover{
    background-color: #006cf9;
    color: white;
}

/* forgot-signup account */

#forgot-signup{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 15px;
}
.forgotpass{
    margin-right: 10px;
    color: #1877f2;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
.forgotpass:hover{
    text-decoration: underline;
}