*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    border: 0;
    outline: 0;
}
body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222;
}
.container{
    width: 400px;
    height: min-content;
    background-color: #fff;
    padding: 30px;
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    gap: 1.8vh;
}
input{
    width: 100%;
    font-size: 20px;
    /* text-transform: capitalize; */
    background-color: #e6f5fb;
    padding: 12px 16px;
    border-radius: 15px;
    margin-bottom: 2px;
}
button{
    width: 100%;
    height: 50px;
    background-color: #f8ba5eef;
    cursor: pointer;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 800;
}
button:hover{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: 0.3s;
}
.heading{
    margin-bottom: 2px;
}
.heading  h1,h3,h4{
    text-align: center;
}
.heading h1{
    font-size: 22px;
    font-weight: 600;
}
.heading h3{
    font-size: 17px;
    text-decoration: underline;
}
.heading h4{
    font-size: 13px;
}

#recaptcha-container{
    margin: 3px;
    margin-left: 15px;
}

#verifier{
    display: none;
}
#p-conf ,#n-conf{
    display: none;
    justify-content: center;
}
#verification-code{
    margin-bottom: 3px;
}
#google-user,#github-user,#facebook-user{
    display: none;
    justify-content: center;
    content: '';
}
.fa-facebook{
    background-color: #a1baf0 !important;
}
.fa-github{
    background-color:  #6b6b6b !important;
}
.fa-phone{
    background-color: #f3bf71ef !important;
}
#facebookbtn{
    cursor: not-allowed;
}