
/* LOGIN PAGE */

.formPage{
    display: none;
    
}

.form-section{
    padding: 80px 150px;
    background-color: whitesmoke;
}

.signIn-Up-btn-wrapper{
    display: flex;
    column-gap: 20px;
    padding:  30px 0px 10px 0px;
}

.signIn-Up-btn.active{
   background-color:#2cb1bc;
   color: white;
}

.signIn-Up-btn{
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 10px;

}

.containerF{
    background-color: white;
    margin: 30px 130px;
    padding: 20px 50px;
    text-align: center;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.formPage h3{
    padding: 30px 0px 5px 0px;
}

.formPage form label{
    display: block;
    text-align: start;
    width: 100%;
    padding-top: 30px;
}

.formPage form{
    padding: 10px 60px;
}

.formPage form button{
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 10px;
    background-color: lightblue;
    color: black;
    font-weight: 500;
}

.input-wrapper input{
    width: 100%;
    height: 50px;  
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 7px;
}

.limitMgs{
    float: left;
    padding: 5px 0px 15px 0px;
}

.checkbox-wrapper{
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
}



.checkbox-wrapper span{
    padding-left: 5px;
}

.checkbox-wrapper a{
    color: blue !important;
    text-decoration: none;
}

.formPage h6{
    padding-bottom: 15px;
}

.formPage p{
    font-weight: 400;
    font-size: 16px;
    padding: 10px 0px;
}

.sign-up-wrapper{
   columns: 2;;
    column-gap: 20px;
}


.contact-section{
    padding: 50px 60px;
}

.contact-content-wrapper{
    padding: 40px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-content-wrapper form button{
    margin-top: 35px;
    width: 160px;
    height: 50px;
    border-radius: 7px;
    color: white;
    background-color: #2cb1bc;
    border: none;
    text-align: center;
}

.contact-content input{
    margin-top: 35px;
}

#contact-comment{
    height: 130px;
}



.getInTouch-details{
    display: flex;
    column-gap: 20px;
    padding: 10px 0px;
}

.getInTouch-details div i{
    font-size: 25px;
}

.getInTouch-details p,
.getInTouch-details h4{
    font-size: 17px;
}


@media screen and (max-width : 778px) {

    .form-section{
    padding: 100px 0px;
    background-color: whitesmoke;
    }

    .containerF{
        margin: 0;
        padding: 30px 20px;
    }

    .formPage form{
        padding: 10px 0px;
    }

    .contact-section{
        padding: 30px 0px 30px 25px;
    }

    .input-block{
        columns: 1;
    }

}


@media screen and (max-width : 480px) {

    .community-stats p{
        font-size: 11px;
    }

    .community-guidelines h3{
        font-size: 20px;
    }
}