﻿

@media screen and (min-width:768px) {
    .leftCol {
        height: 100%;
        width: 50%;
    }
}

.CenterImg {
    z-index: 1;
    width: 370px;
    height: 270px;
    position: fixed;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
}



@media screen and (max-width:1199px) and (min-width:768px) {
    .CenterImg {
        width: 300px;
        height: 200px;
    }
}




@media screen and (max-width:767px) {
    .CenterImg {
        width: auto;
        height: 100%;
        aspect-ratio: 16/9;
        position: initial;
        transition: initial;
        transform: initial;
    }



    .leftCol {
        width: 100%;
        height: fit-content;
        aspect-ratio: 16/9;
    }
}


.AnimateCloudBG {
    background: #000000;
    height: 100vh;
    margin: 0;
    padding: 0;
    /*padding-top: 50px;*/
    overflow: hidden;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    /*z-index: -1;*/
}



@media screen and (min-width:992px) {
    .moreThanDesktop {
        display: block;
    }
}

@media screen and (max-width:991px) {

    .moreThanDesktop {
        display: none !important;
    }
}



/*#region MainPage*/

.RegisterMainContainer {
    display: contents;
}

.MainRow, .MainRow > div {
    display: grid;
    align-content: center;
    align-items: center;
    justify-items: center;
    gap: 10px;
    width: calc(100% - 2px);
    max-width: 600px;
    margin: auto;
}

.MainRow {
    height: auto;
    min-height: 100%;
    padding: 70px 15px;
    gap: 50px;
    /**********************/
    background-color: #f7f7f7;
    min-height: fit-content !important;
    padding: 70px 25px;
    border-radius: 16px;
    /*    position: relative;
    top: 50%;
    transform: translate(0, -50%);*/
    box-shadow: inset 0px 0px 0px 0.333px rgba(75, 75, 75, 0.35), -1.667px -1.667px 5px 0px #4B4B4B, 2.5px 2.5px 5px 0px rgba(1, 1, 1, 0.55);
}


.MainDiv {
    height: 100vh;
    width: 50%;
    /*background-color: White;*/
    float: right;
    position: fixed;
    right: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    backdrop-filter: blur(7px) brightness(100%) grayscale(0%) opacity(90%);
    display: flex;
    padding: 70px 25px;
    direction: initial;
}


@media screen and (min-width:991px) {
    .MainDiv {
        left: 50%;
    }

    .leftCol {
        width: 50%;
        left: 0;
        top: 0;
        position: absolute;
    }
}


@media screen and (max-width:991px) {
    .MainDiv {
        width: 100%;
        padding: 50px 10px;
    }

    .MainRow {
    }
}

@media screen and (max-width:767px) and (min-width:300px) {
    .MainRow {
        gap: 35px;
    }
}

/*#endregion MainPage*/

/*------------------------------------------------ 1st Row: Logo --------------------------------------------------*/

/*#region Logo*/


.LogoDiv {
}

.BlueCircleLogo {
/*    width: 72px;*/
    height: 72px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.UnderLogoTxt {
    font-size: 20px;
    color: var(--DefualtTextColor);
    font-weight: 600;
}

@media screen and (max-width:991px) and (min-width:768px) {
    .BlueCircleLogo {
        /*width: 65px;*/
        height: 65px;
    }
}

@media screen and (max-width:767px) and (min-width:300px) {

    .BlueCircleLogo {
        /*width: 65px;*/
        height: 65px;
    }

    .LogoDiv {
        height: auto;
        margin-top: 0;
    }

    .UnderLogoTxt {
        font-size: 18px;
    }
}

/*#endregion Logo*/

/*------------------------------------------------ 2nd Row: Form Group --------------------------------------------------*/

/*#region FormGroup*/


.myInput, .myInput:focus {
    height: 60px;
    /*border-radius: 5px;*/
    background-color: white;
    text-align: right;
    font-size: 18px;
    color: var(--FieldTitle_Color);
    padding: 13px 20px 0;
    width: 100%;
    float: right;
    -webkit-box-shadow: var(--AnyButton_Up_Shadow);
    -moz-box-shadow: var(--AnyButton_Up_Shadow);
    box-shadow: var(--AnyButton_Up_Shadow);
    outline: none !important;
    direction: rtl;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;
    border-radius: var(--InputFieldsBorder_Radius_Mobile);
}

    .myInput:focus {
        border: 1px solid var(--projectMainAccent_Color) !important;
    }

select {
    cursor: pointer;
    font-size: 18px;
    background-image: url('../images/down-arrow(1).png');
    background-repeat: no-repeat;
    background-size: 21px;
    background-position: 15px center;
}

    select option {
        font-size: 18px;
    }

.ShowPass {
    width: 60px;
    height: 60px;
    float: left;
    background-color: transparent;
    position: absolute;
    left: 0;
    padding: 19px;
    cursor: pointer;
}

@media screen and (max-width:767px) and (min-width:300px) {

    select {
        background-size: 17px;
        background-position: 10px center;
    }

    .ShowPass {
        width: 50px;
        height: 50px;
        padding: 16px;
    }
}


::placeholder {
    color: var(--FieldTitle_Color);
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--FieldTitle_Color);
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--FieldTitle_Color);
}

@media screen and (max-width:767px) and (min-width:300px) {

    .myInput, .myInput:focus, select, select:focus, select option {
        font-size: 16px;
    }

        .myInput, .myInput:focus, select {
            height: 50px;
        }
}


@media screen and (max-width:400px) and (min-width:300px) {
    .myInput, .myInput:focus {
        font-size: 12px;
    }
}


/*#endregion FormGroup*/

/*#region FormGroup_New*/

*,
*:focus {
    outline: none
}

.form-item {
    position: relative;
    width: 100%;
    border-radius: 5px;
}

    .form-item input {
        display: block;
        transition: all 0.3s ease 0s;
        height: 60px;
        border-radius: 5px;
        background-color: white;
        text-align: right;
        font-size: 18px;
        border: medium none;
        color: rgb(164, 164, 164);
        width: 100%;
        float: right;
        padding: 13px 20px 0;
        /**/
        display: flex;
        padding: 7px 14px;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        border-radius: var(--InputFieldsBorder_Radius_Mobile);
        background-color: white;
        -webkit-box-shadow: var(--AnyButton_Up_Shadow);
        -moz-box-shadow: var(--AnyButton_Up_Shadow);
        box-shadow: var(--AnyButton_Up_Shadow);
        background-blend-mode: soft-light, normal;
        /*height: 38px;*/
        border: none;
        outline: none !important;
    }

        .form-item input:focus {
            outline: none !important;
            padding: 10px 25px 0;
        }

    .form-item label {
        position: absolute;
        cursor: text;
        z-index: 2;
        top: 15px;
        right: 10px;
        font-size: 18px;
        font-weight: 600;
        background-color: transparent;
        padding: 0 10px;
        color: var(--FieldTitle_Color);
        transition: all .3s ease;
        margin-bottom: 0 !important;
        direction: ltr;
    }

    .form-item input:focus + label,
    .form-item input:valid + label,
    .form-item select:focus + label,
    .form-item select:valid + label {
        font-size: 12px;
        top: 1px;
        color: var(--BahmanBlack_Color);
    }

    .form-item input:focus + label,
    .form-item select:focus + label {
        color: var(--BahmanBlack_Color) !important;
    }

    .form-item input:valid + label,
    .form-item select:valid + label {
        color: var(--DefualtTextColor);
    }


@media screen and (max-width:767px) {
    .form-item input {
        height: 50px;
    }

    .form-item label {
        top: 12px;
        font-size: 14px;
    }

    .form-item input:focus + label,
    .form-item input:valid + label,
    .form-item select:focus + label,
    .form-item select:valid + label {
        font-size: 12px;
        top: 1px;
    }
}


.VerificationCode {
    letter-spacing: 50px;
    text-align: center !important;
}

@media screen and (max-width:500px) {
    .VerificationCode {
        letter-spacing: 25px;
    }
}

/*#endregion FormGroup_New*/
/*------------------------------------------------ 3rd Row: Green BTN --------------------------------------------------*/
/*#region GreenBTN*/
.MainRegisterBtn, .MainRegisterBtn:focus, .MainRegisterBtn:hover, .MainRegisterBtn:active {
    width: 100%;
    border-radius: 5px;
    border: none !important;
    height: 60px;
    color: White;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    letter-spacing: .5px;
    background: var(--projectMainAccent_BGColor);
    color: var(--BahmanBlack_Color);
    -webkit-box-shadow: var(--DokmeGholombeUp_Daruni_Shadow);
    -moz-box-shadow: var(--DokmeGholombeUp_Daruni_Shadow);
    box-shadow: var(--DokmeGholombeUp_Daruni_Shadow);
    border-radius: var(--BtnsBorder_Radius);
}

    .MainRegisterBtn.RegisterGreenBtn {
    }

    .MainRegisterBtn.RegisterBlueBtn {
    }

.backward, .backward:hover {
    color: var(--DefualtTextColor);
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    direction: rtl;
    display: inline-flex;
    width: auto;
}

a.backward, a.backward:hover {
    display: flex;
    width: auto;
    padding: 10px 20px 20px 10px;
    justify-self: left;
    font-weight: 600;
    gap: 3px;
    /*margin-top: 10px;*/
}

.backwardArrow {
    width: 25px;
    height: auto;
}

.ForgotPass {
    justify-content: left;
    justify-self: left;
    padding: 0 5px;
}

.NoticeTxt, .NoticeTxt:hover {
    cursor: default;
    display: block;
    text-align: right;
    margin-top: 35px;
}

.RegisterBtn {
    /*height: 60px;
    min-width: 50%;*/
    height: 53px;
    border-radius: 36px;
    background-color: transparent;
    color: var(--BahmanBlack_Color);
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    border: 2px solid var(--BahmanBlack_Color);
    font-weight: 600;
}

@media screen and (max-width:767px) and (min-width:300px) {

    .backward, .backward:hover {
        font-size: 12px;
    }

    .RegisterBtn {
        height: 45px;
        font-size: 16px;
    }
}

/*#endregion GreenBTN*/

/*------------------------------------------------ [0px , 300px) Register_First_Page ----------------------------------------------*/

@media screen and (max-width:299px) and (min-width:0) {
    #WholeBody {
        display: none;
    }
}

@media screen and (max-width:299px) and (min-width:0) {
    .Lt300 {
        display: block !important;
    }
}
