* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f6f6f9;
}

.main {
}

.container {
    padding: 0;
    margin: 0 auto;
    max-width: 1344px;
}

.leftdiv {
    width: 50%;
    padding: 2%;
}

    .leftdiv .textDiv .headtext {
        font-size: 48px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        line-height: 1.4;
        letter-spacing: -.02em;
        color: #2e2e2e;
        font-size: 68px;
        margin-bottom: 12px;
    }

    .leftdiv .textDiv .paraText {
        margin-bottom: 32px;
        color: #2e2e2e;
        line-height: 1.6;
    }

    .leftdiv .textDiv p {
        font-family: Open Sans, sans-serif;
        font-weight: 400;
        line-height: 1.6;
        font-size: 18px;
        letter-spacing: .02em;
        margin-bottom: 1em;
    }

    .leftdiv img {
        max-width: 100%;
    }

/* right side div */
.rightDiv {
    width: 50%;
    padding: 3%;
}

    .rightDiv .iconAsterix {
        float: right;
        color: #bf0000;
    }

.mainPageDiv .loginFormImgDiv {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

    .mainPageDiv .loginFormImgDiv form {
        width: 45%;
    }

.logonavbar {
    padding: 30px 0 30px 0;
    border-bottom: 1px solid #e5e5ed;
    margin-bottom: 50px;
}

/* form css */
/* Add padding to container elements */
.formDiv, .divUserInfo {
    padding: 6% 6%;
    margin: 0;
    border-radius: 6px;
    -webkit-box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
    box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
    background: #FFFFFF;
}

.lableName {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #2e2e2e;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    float: left;
    margin-bottom: 10px;
}

    .lableName:after {
        content: "*";
        font-weight: bold;
        color: #bf0000;
    }

/* Full-width input fields */
input[type=text],
input[type=phone],
input[type=password],
select {
    /*margin-top: 15px;
    margin-bottom: 20px;*/
    padding: 8px 16px;
    outline: none;
    color: #2e2e2e;
    font-size: 14px;
    font-family: Open Sans, sans-serif;
    font-weight: 700;
    line-height: 1.5;
    /*background-color: #fff;*/
    border-radius: 100px;
   /* -webkit-box-shadow: inset 0 0 0 1px #c8c8d8;*/
    /*box-shadow: inset 0 0 0 1px #c8c8d8;*/
    height: 40px;
    /* //width: 100% !important;*/
   /* -webkit-appearance: none;*/
    border: 1px solid #e5e7eb;
}

.select-dropdown {
    background-image: url("https://static.peoplehr.net.au/2025070710-hotfix000000/Images/sprite.png");
    background-repeat: no-repeat;
    -webkit-appearance: none;
    background-position: 99% -1px;
    padding-right: 30px;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=phone]:focus,
select:focus {
    /* background-color: #fff;*/
    outline: 0px solid #54b9b3;
    box-shadow: none;
}

.termServiceDiv p {
    font-family: Open Sans, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    font-size: 16px;
    letter-spacing: .02em;
    margin: 5% 0;
}



/* Set a style for all buttons */


.textColorchangeDiv {
    margin: 25% 0 15% 10%;
    width: 85%;
    text-indent: -40px;
}

    .textColorchangeDiv label {
        font-family: Open Sans, sans-serif;
        font-weight: 400;
        line-height: 0;
        font-size: 16px;
        letter-spacing: .02em;
        color: #2e2e2e;
        margin-left: 2%;
    }

    .textColorchangeDiv .checkbox-round {
        width: 25px;
        height: 25px;
        background-color: white;
        border-radius: 50%;
        vertical-align: -webkit-baseline-middle;
        border: 5px solid #fff;
        appearance: none;
        -webkit-appearance: none;
        outline: 1px solid #54b9b3;
        cursor: pointer;
    }

        .textColorchangeDiv .checkbox-round:checked {
            background-color: #54b9b3;
        }

    .textColorchangeDiv input[type=checkbox]:checked + label {
        color: #54b9b3;
        font-weight: 600;
    }

button:hover {
    opacity: 1;
}

/* ---------------------------------------- */

.clearfix button {
    background-color: transparent;
    cursor: pointer;
}

.cta {
    position: relative;
    margin: auto;
    padding: 10px 30px;
    transition: all 0.2s ease;
    border: 1px solid #54b9b3;
    border-radius: 32px;
}

    .cta:hover {
        color: #fff;
    }

    .cta:before {
        content: "";
        position: absolute;
        top: 2px;
        left: 2px;
        display: block;
        border-radius: 28px;
        background: #54b9b3;
        width: 30px;
        height: 30px;
        transition: all 0.3s ease;
    }

    .cta span {
        position: relative;
        text-transform: capitalize;
        vertical-align: middle;
        font-family: Open Sans, sans-serif;
        font-weight: 700;
        font-size: 14px;
        line-height: 24px;
        color: #000000;
    }

    .cta svg {
        position: relative;
        left: -15px;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke: #fff;
        stroke-width: 1.4px;
        transform: translateX(-5px);
        transition: all 0.3s ease;
    }

    .cta:hover:before {
        width: 96%;
        background: #54b9b3;
    }

    .cta:hover svg {
        transform: translateX(0);
    }

    .cta:active {
        transform: scale(0.96);
    }

.clearfix {
    text-align: center;
}

.error {
    color: #e51734;   
    font-family: Open Sans, sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.divUserInfo .block {
    margin-bottom: 25px !important;
}

.w370.selectleft select {
    width: 310px;
}

.subdomainDv {
    border-radius: 100px;
    width: 310px;
    float: left;
    height: 40px;
    border: 1px solid #e5e7eb;
}
    .subdomainDv.focusDv{
        box-shadow:none;
    }

    .subdomainDv input.text {
        border: none;
        box-shadow: none !important;
        margin: 3px 0 0 3px;
        outline: none !important;
        height: 30px;
    }

    .subdomainDv .overF {
        margin-left: 5px;
    }

.divUserInfo span.tipyinfo.popupsignup {
    right: 0;
}

.w280 {
    width: 280px;
}
/*.w370 div.selector {
    border-radius: 100px;
    border: 1px solid #e5e7eb;
}*/
@media screen and (max-width: 767px) {
    .leftdiv {
        width: 100%;
        float: left;
    }
    .mainPageDiv .loginFormImgDiv form {
        width: 100%;
        float: left;
    }
    .mainPageDiv .loginFormImgDiv {
        display: initial;
        width: 100%;
        justify-content: initial;
    }
    .form input.text.w310 {
        width: 100% !important;
    }
    .w370.selectleft select {
        width: 100%;
    }
    .w280 {
        width: 100%;
    }
    .form div.w370 {
        width: 100% !important;
    }
    .form div.inline {
        margin-right: 0px !important;
        width: 100%;
    }
    .subdomainDv {    
        width: 100%;    
    }
    .select-dropdown{
        width:100%;
    }
    }

