*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #f1f8e9;
}
#container{
    width: 30%;
    padding: 20px;
    /* border: 1px solid red; */
    margin: auto;
    margin-top: 130px;
    background-color: white;
}
#form{
    border-bottom: 1px solid rgb(212, 213, 216);

}
#form > h2{
    margin-bottom: 20px;
    font-size: 20px;
}
#form > input{
    width: 100%;
    height: 40px;
    margin-bottom: 15px;
}
#keepmesignin>p {
    font-size: 17px;
    margin-right: 10px;
}

#checkbox_signin {
    width: 5%;
    height: 23px;
    background-color: white;
    margin-right: 10px;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 320px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -60px;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}
#keepmesignin {
    display: flex;
}
.signinbutton{
    width: 45%;
    height: 40px;
    background-color: black;
    color: white;
    border-radius: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
}
#forget_password_option{
    margin-left: 21%;
}
.createAccountButton{
    width: 45%;
    height: 40px;
    background-color: white;
    color: black;
    border-radius: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
}
.termsandconditionlink{
    text-align: center;
    font-size: 13px;
}
.termsandconditionlink > a{
    color: rgb(37, 148, 203);
}
.asktosignupif{
    font-size: 20px;
    margin-top: 20px;
}
.hidepassword{
    margin-bottom: 15px;
}