body>main{
    padding: 80px 0 64px 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}  
body>main>section{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
   
}
form{
    margin: 32px 0;
    width: 100%;
    max-width: 350px;
    border: 1px solid #DADCE0;
    border-radius: 8px;
    padding: 16px;
    /* padding-bottom: 0; */
    overflow: hidden;
    box-shadow: 0 0 6px #0003;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.logoForm{
    width: fit-content;
    height: 32px;
    display: flex;
}
.logoForm *{
    margin: 0;
    max-height: 100%;
}
.logoForm svg{
    max-width:32px ;
}
.logoText{
    margin-right: 8px;
    font-size: 10px;
    color: #14317a;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.logoText h3:nth-child(2){
    font-size: 8px;
}
.title_Form{
    text-align: center;
    margin: 24px 0;
}
.title_Form h1{
    font-size: 18px;
    margin-bottom: 0;
}
.title_Form p{
    font-size: 12px;
    margin: 0;
}
.profilePicLogin{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border:2px solid #0d64d6;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 16px;
}
.profilePicLogin img{
    width: 100%;
}
.orgListInfo{
    padding: 0;
}
.orgListInfo li{
    box-sizing: content-box;
    /* border-bottom: 1px solid #DADCE0; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* flex-wrap: wrap; */
    padding:  0;
    padding-top: 0;
    position: relative;
    height: 48px;
    margin: 16px 0;
}
.textMessage{
    height: 16px !important;
    font-size: 11px;
    margin: 4px 0 !important;
}
.textMessage p{
    margin: 0;
}
.orgListInfo li *{
    width: 100%;
}

.orgListInfo li label{
    width: fit-content;
    margin-bottom: 16px;
    color: #504f4f;
    font-size: 14px;
    background-color: #fff;
    margin-right: 8px;
    padding: 0 8px;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-50%);
}

.orgListInfo li input , .orgListInfo li textarea , .orgListInfo li select  {
    /* border: none; */
    color: #000;
    font-family: IRANSans;
    font-size: 15px;
    height: 48px;
    border-radius: 8px;
    border: 2px solid #72a2f7;
    padding-right: 8px;
}
.sub{
    flex-direction: row !important;
    justify-content: space-between !important ;
    align-items: center !important;
    border: none !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    gap:16px;
}
.sub input[type=submit]{
    width: fit-content;
    min-width: 128px;
    height: unset;
    background-color:#1a73e8 ;
    padding: 6px 20px;
    color: #ffff;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    
}
.sub input[type=submit]:hover{
    background-color:#0d64d6 ;
}
.sub a{
    width: fit-content;
    font-size: 14px;
    font-weight: lighter;
    color: #559DFF;
}
.sub a:hover{
    color:#0d64d6 ;
}
p.Error{
    color: red !important;
}
@media(max-width:500px){
    .sub{
        flex-direction: column !important;
        margin-bottom: 32px !important;
    }
    .sub > *{
        width: 100% !important;
        text-align:center;
    }
    .sub a{
        margin-top: 16px;
    }
    /* form{
        max-width: unset;} */
}