body{
    margin: 0;
    background-color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

header{
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border: 1px solid rgb(31, 18, 18); */
    width: 100%;
    height: 8vh;
}

#fb{
    font-size: 30px;
    padding: 0px 40px 0px  ;
    font-weight: 600;
    color: #0866ff;
}

#sub1{
    /* margin-right: 40px; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #0866ff; */
}

.inp{
    border-radius: 6px;
    border: 1px solid #9e9fa1;
    padding: 10px;
    font-size: 15px;
    outline: none;

}

#sub11{
    display: flex;
    gap: 10px;
}

.inp:focus{
    border: 1px solid #81b0fd;
    box-shadow: 1px 1px 10px #c6dbfb ;
}
.plac{
    position: relative;
    width: 100%;
}

label{
    position: absolute;
    left: 10px;
    top: 11px;
    color: #606060;
    pointer-events: none;
    font-size: 14px;
    

}

.inp:focus~label{
    color: #979797;
}


#login_bt{
    /* border: 1px solid gray; */
    margin-left: 10px;
    border: none;
    cursor: pointer;
    width: 80px;
    border-radius: 6px;
    background-color: #0866ff;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    height: 40px;

}

#login_bt:hover{
    background-color: #045eef;
    color: #dfdede;
}

#forget{
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #0866ff;
    font-weight: 600;
    margin-right: 40px;
}

#main{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e9ebee;
    height: 45vh;

}

#submain{
    box-shadow: 1px 1px 20px #b8b8b9;
    margin-top: 50px;
    height: 25vh;
    /* border: 1px solid #9e9fa1; */
    background-color: #ffffff;
    border-radius: 8px;
    flex-direction: column;
    width: 500px;
}
#submain h1{
    /* text-align: center; */
    margin-left: 15px;
    font-size: 20px;
    color: #162643;
}

#l1{
    /* color: #fefeff; */
    opacity: 0.4;

}
#submain p{
    margin-left: 15px;
    font-size: 17px;
}

#l2{
    opacity: 0.4;
}

#sub{
    /* border: 1px solid gray; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 30px 0px ;
}
#sub2 #try {
    padding: 9px;
    font-size: 15px;
    font-weight: 600;
    background-color: #0866ff;
    color: #ffffff;
    border: none;
    width: 100px;
    border-radius: 6px;
}
#sub2 #try:hover{
    background-color: #025dee;
    color: #e9ebee;
}

#sub2 #cancel{
    margin-left: 5px;
    padding: 9px;
    font-size: 15px;
    font-weight: 600;
    background-color: #e4e6eb;
    color: #4b4f56;
    border: none;
    width: 90px;
    border-radius: 6px;
}

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 18%;
}

input:hover{
    border: 1px solid rgb(49, 49, 49);
}


