/*---------------------------------------------------------
login-design
-----------------------------------------------------------*/
a {
    text-decoration: none;
}

.wpo-accountWrapper {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    margin: auto;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 16%);
    border-radius: 10px;
    overflow: hidden;
}

.wpo-accountForm {
    padding: 50px 30px;
}


.fromTitle h2 {
    font-size: 25px;
    color: #303030;
    margin-bottom: 35px;
    font-weight: 700;
    padding: 0 15px;
}

.fromTitle p {
    font-size: 15px;
    margin-bottom: 40px;
}

.form-style input {
    width: 100%;
    margin-bottom: 15px;
    padding-left: 20px;
    border: 1px solid #e5e5e5 !important;
    border-radius: 2px;
    border: none;
}

.form-style input:focus {
    outline: none;
    border: 1px solid #e5e5e5 !important;
}



input[type=checkbox]+label {
    display: block;
    margin: 0.2em;
    cursor: pointer;
    padding: 0.2em;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox]+label:before {
    content: "\2714";
    border: 1px solid #e5e5e5;
    border-radius: 0.2em;
    display: inline-block;
    width: 1.2em;
    height: 1.3em;
    padding-left: 0.2em;
    padding-bottom: 0.3em;
    margin-right: 0.2em;
    vertical-align: bottom;
    color: transparent;
    transition: .2s;
    line-height: 1.2em;
    position: absolute;
    left: 14px;
}

input[type=checkbox]+label:active:before {
    transform: scale(0);
}

input[type=checkbox]:checked+label:before {
    background-color: var(--blueColor);
    border-color: var(--blueColor);
    color: #fff;
}

input[type=checkbox]:disabled+label:before {
    transform: scale(1);
    border-color: #aaa;
}

input[type=checkbox]:checked:disabled+label:before {
    transform: scale(1);
    background-color: #bfb;
    border-color: #bfb;
}


.check-box-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forget-btn a {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--mainColor);
}

.input-box {
    position: relative;
}

.input-box label {
    color: #676B79;
    font-weight: 500;
    font-size: 16px;
    padding-left: 35px !important;
}

.wpo-accountForm .wpo-accountBtn {
    font-size: 16px;
    padding: 10px 20px;
    border: 2px solid var(--blueColor);
    width: 100%;
    background: var(--blueColor);
    color: #fff;
    transition: all .4s ease-in-out 0s;
    margin-top: 30px;
}

.wpo-accountForm .wpo-accountBtn:hover {
    background: transparent;
    color: #333;
}

.or {
    border-top: 1px dashed #e5e5e5;
    margin-top: 45px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
}

.or span {
    font-size: 14px;
    display: inline-block;
    padding: 0 25px;
    background: #fff;
    position: relative;
    top: -16px;
    color: var(--blueColor);
}

.login-register form input {
    background-color: #E5E2E2;
}

.subText {
    font-size: 13px;
    text-align: center;
}

.subText a {
    display: inline-block;
    font-size: 13px;
    padding: 0 4px;
    color: var(--blueColor);
}


.form-group {
    position: relative;
}

.input-group-btn {
    position: absolute;
    right: 10px;
    top: 41px;
    opacity: .5;
}

.input-group-btn button {
    background: transparent !important;
    border: none;
    outline: none;
    background: none;
    box-shadow: none !important;
}

.input-group-btn button:hover {
    background: transparent;
}

.input-group-btn button:focus,
.input-group-btn button.active {
    background: none !important;
    border: none !important;
    outline: none !important;
}

.btn-default.active,
.btn-default.active,
.open>.dropdown-toggle.btn-default {
    background: none !important;
    border: none;
    outline: none;
}

@media(max-width: 1200px) {
    
    .wpo-accountForm {
        padding: 70px 35px;
    }
}

@media(max-width: 1024px) {

    .wpo-accountForm {
        padding: 70px 35px;
    }

    .image img {
        width: 100%;
    }
}

@media(max-width: 992px) {
    .wpo-accountInfo {
        width: 100% !important;
    }

    .wpo-accountForm {
        width: 100% !important;
    }

    .accountArea {
        padding: 0px 16px;
    }

    .input-group-btn {
        top: 38px;
    }
}

@media(max-width: 767px) {
    .wpo-accountInfo {
        width: 100% !important;
    }

    .wpo-accountForm {
        width: 100% !important;
    }

    .input-group-btn {
        top: 34px;
    }
}

.back-home {
    max-width: 150px;
}