body {
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
    box-sizing: border-box;
    /*background-image: url(upload/tringa.jpg);*/
    background-color: rgb(211, 208, 214);
    background-size: cover;
    background-attachment: fixed;
}

.container {
    display: flex;
    align-content: center;
    justify-content: center;
}

.formWraper {
    width: 55%;
    height: 580px;
    margin-top: 80px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px black;
    background-color: lavender;
}

/* code for left sectin of form */
.formDiv {
    width: 55%;
    padding: 8%;
    background-color: lavender;
    text-align: center;
    max-width: 500px;
    max-height: 500px;
    margin-top: 80px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px black;
   
    
}

.formDiv h2 {
    color: rgb(0, 0, 0);
    margin-top: -5px;
}

/* code for right sectin of the registration form */
.welcomeDiv {
    width: 50%;
    padding: 10px;
    text-align: center;
    color: white;
}

.welcomeDiv h2 {
    margin-top: 150px;
}


/* ---- code for Font Awsome social icons */
.socialBtn {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.icon {
    width: 30px;
    height: 30px;
    justify-content: center;
    border-radius: 15px;
    background-color: lavender;
    margin: 5px;
    line-height: 30px;
    box-shadow: 0px 0px 10px black;

}

.text {
    font-size: small;
}

.orDiv {
    width: 10%;
    margin: 0 auto;
    background-color: lavender;
    position: relative;
    top: -16px;
    justify-content: center;
}

/* code for form input fields */
.formGroup {
    width: 100%;
    position: relative;
}

.formGroup input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-style: none;
    padding-left: 30px !important;
}

.formGroup select {
    width: 112%;
    padding: 10px;
    margin-bottom: 10px;
    border-style: none;
    color: gray;
    padding-left: 30px !important;
}

/* Code for Icones inside html form input */
.formGroup i {
    position: absolute;
    left: 0px;
    top: 8px;
    color: grey;
    font-size: smaller;
    margin: 10px !important;
    transform: translateY(-50%);
    cursor: pointer;
}

.formGroup i.far.fa-eye-slash {
    display: none;
}

#togglePassword {
    margin-left: 900px;
}

input::placeholder {
    position: relative;
    left: 10px;
}

input:focus {
    border-color: rgb(236, 48, 89);
}

.checkBox {
    width: 100%;
    margin-top: 2px;
}

.btn {
    width: 70%;
    padding: 15px;
    background-color: rgb(12, 222, 250);
    margin-top: 15px;
    color: rgb(0, 0, 0);
    border-radius: 20px;
    border-style: none;
    cursor: pointer;
}

.btn2 {
    width: 70%;
    padding: 15px;
    background-color: transparent;
    margin-top: 15px;
    color: lavender;
    border-radius: 20px;
    border-style: none;
    border: 2px solid rgb(247, 243, 243);
    cursor: pointer;
}

/* CSS mouse hover efects */
.btn:hover,
.btn2:hover,
.icon:hover {
    background-color: rgb(12, 21, 68);
    color: whitesmoke;
}