/* signUp  */
body {
    margin: 0;
    font-family: 'Tajawal', sans-serif;
    padding: 0;
    box-sizing: border-box;
}

.signUp {
 height: 100vh;
 padding-left: 15px;
 padding-right: 15px;
 margin-left: auto;
 margin-right: auto;
 max-width: 100%;
}
.signLogo {
    height: 100%;
}

.imgLogo {
    display: inline-block;
    /* max-height: 100vh; */
    min-width: 100%;
    max-height: 100vh;
    /* width: 100%; */
    padding: 1rem;
    border-radius: 20px;
}

.signUpTitle {
    font-size: 48px;
    line-height: 57.6px;
    font-weight: 700;
    color: rgba(0, 0, 0, 1);
}

.signUpText {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: rgba(0, 0, 0, 0.5);
}

.form-label {
    font-size: 16px;
    line-height: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
    padding: .5rem 0;
    text-align: start !important;
}

.signUpInput {
    border : 1px solid rgba(175, 175, 175, 1) ;
    padding: 10px 14px ;
    height:51px ;
    border-radius: 14px;
    width: 100%;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
}

.signUpInput:focus {
    outline: none;
    border: 1px solid #21213D;
}
.passIcon {
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    color: rgba(175, 175, 175, 1);
}


.form-check-input {
    border: 1px solid #21213D;
}
.form-check-input:checked {
    background-color: #21213D;
    border-color: #21213D;
}

.form-check-input:not(:checked) {
    border-color: #21213D;
}

.form-check-input:focus {

    box-shadow:  0 0 0 0;
}

.form-check-label {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: rgba(175, 175, 175, 1)
}

.forgetPass {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: rgba(0, 0, 0, 1);
}

.signUpBtn {
    height: 55px;
    border-radius: 8px;
    padding: 12px 24px;
    width: 100%;
    background-color: #21213D;
    border: none;
    outline: none;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 1)
}
 .notHaveEmail {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(43, 43, 43, 1);
 }

 .createLink {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: rgba(43, 43, 43, 1);
 }

 @media screen and (max-width: 767px) {
    .signUpTitle {
        font-size: 2rem;
    }
}

/* signUp  */