:root {
    --white: #e9e9e9;
    --gray: #333;
    --blue: #ff9b44;
    --lightblue: #fc6075;

    --button-radius: 0.7rem;

    --max-width: 800px;
    --max-height: 550px;

    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
}

.form__title {
    font-weight: 300;
    margin: 0;
    margin-bottom: 1.25rem;
}

.link {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 1.5rem 0;
    text-decoration: none;
}

.container {
    background-color: var(--white);
    border-radius: var(--button-radius);
    box-shadow:
        0 0.9rem 1.7rem rgba(0, 0, 0, 0.25),
        0 0.7rem 0.7rem rgba(0, 0, 0, 0.22);
    height: var(--max-height);
    max-width: var(--max-width);
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 5;
}

.container__form {
    height: 100%;
    position: absolute;
    top: 0;
    transition: all 0.6s ease-in-out;
}

.container--signin {
    left: 0;
    width: 50%;
    z-index: 2;
}

.container.right-panel-active .container--signin {
    transform: translateX(100%);
}

.container--signup {
    left: 0;
    opacity: 0;
    width: 50%;
    z-index: 1;
}

.container.right-panel-active .container--signup {
    animation: show 0.6s;
    opacity: 1;
    transform: translateX(100%);
    z-index: 5;
}

.container__overlay {
    height: 100%;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    transition: transform 0.6s ease-in-out;
    width: 50%;
    z-index: 100;
}

.container.right-panel-active .container__overlay {
    transform: translateX(-100%);
}

.overlay {
    background-color: var(--lightblue);
    /* background: url("https://res.cloudinary.com/dci1eujqw/image/upload/v1616769558/Codepen/waldemar-brandt-aThdSdgx0YM-unsplash_cnq4sb.jpg"); */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover; */
    height: 100%;
    left: -100%;
    position: relative;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
    width: 200%;
}

.container.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay__panel {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    position: absolute;
    text-align: center;
    top: 0;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
    width: 50%;
}

.overlay--left {
    transform: translateX(-20%);
}

.container.right-panel-active .overlay--left {
    transform: translateX(0);
}

.overlay--right {
    right: 0;
    transform: translateX(0);
}

.container.right-panel-active .overlay--right {
    transform: translateX(20%);
}

.overlay__panel .btn {
    background-color: var(--blue);
    background-image: linear-gradient(90deg, var(--blue) 0%, var(--lightblue) 74%);
    /* background: transparent; */
    color: var(--white);
    border-radius: 30px;
    /* border: 3px solid var(--blue); */
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    padding: 0.6rem 3rem;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

/* .form > .btn {
	margin-top: 1.5rem;
} */

/* .btn:active {
	transform: scale(0.95);
}

.btn:focus {
	outline: none;
} */

.container__form .form {
    background-color: var(--white);
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
    padding: 0rem 3rem;
    height: 100%;
    /* text-align: center; */
}

/* .input {
	background-color: #fff;
	border: none;
	padding: 0.9rem 0.9rem;
	margin: 0.5rem 0;
	width: 100%;
} */

@keyframes show {
    0%,
    49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%,
    100% {
        opacity: 1;
        z-index: 5;
    }
}

/*Checkboxes styles*/
input[type="checkbox"] {
    display: none;
}

input[type="checkbox"] + label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    /* font: 14px/20px 'Open Sans', Arial, sans-serif; */
    color: rgb(0, 0, 0);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    width: 150px;
}

input[type="checkbox"] + label:last-child {
    margin-bottom: 0;
    font-size: 14px;
}

input[type="checkbox"] + label:before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border: 2px solid #000000;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
    -webkit-transition:
        all 0.12s,
        border-color 0.08s;
    transition:
        all 0.12s,
        border-color 0.08s;
}

input[type="checkbox"]:checked + label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.account-btn {
    background: #ff9b44;
    background: -moz-linear-gradient(left, #ff9b44 0%, #fc6075 100%);
    background: -webkit-linear-gradient(left, #ff9b44 0%, #fc6075 100%);
    background: -ms-linear-gradient(left, #ff9b44 0%, #fc6075 100%);
    background: linear-gradient(to right, #ff9b44 0%, #fc6075 100%);
    border: 0;
    border-radius: 4px;
    display: block;
    font-size: 16px;
}

.account-btn:hover,
.account-btn:focus {
    border: 0;
    opacity: 0.8;
}

.social_media ul {
    list-style: none;
    padding-left: 60px;
    padding-right: 60px;
}

@media screen and (max-width: 768px) {
    .social_media ul {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media screen and (max-width: 376px) {
    .social_media ul {
        padding-left: 50px;
        padding-right: 50px;
    }
}

.social_media ul li {
    width: 2rem;
    height: 2rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s all ease-in-out;
    text-decoration: none;
    box-shadow: rgba(51, 51, 51, 0.24) 0px 3px 8px;
    /* background-color: #fff; */
}

.social_media ul li a:hover {
    color: #fff;
}

.social_media ul li:hover {
    box-shadow: rgba(0, 0, 0, 0.54) 0px 3px 8px;
}

.social_media ul li:active {
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
        rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.fb i {
    color: #1877f2;
}

.ggle i {
    color: #d50f25;
}

.twi i {
    color: #1da1f2;
}

.lin i {
    color: #0077b5;
}

/* otp css  */
.otp-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.otp-container .otp-number-input {
    width: 38px;
    height: 38px;
    margin: 0 5px 0 0;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    padding: 0;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 22px;
    box-shadow: none;
    text-align: center;
    background-color: none;
    font-weight: 400;
    border-radius: 3px;
    outline: 0;
    transition: border 0.3s ease;
}

.otp-container .otp-number-input:focus {
    border-color: rgba(0, 0, 0, 0.5);
}

.otp-container .otp-number-input.otp-filled-active {
    border-color: #00bb09;
}

.otp-submit[disabled] {
    opacity: 0.6;
    cursor: default;
}

/* mobile view start */
.mobile-view {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 10;
}

.mobile-view .container-sm {
    display: flex;
    justify-content: center;
}

.mobile-view .container-sm .card {
    width: 25rem;
    margin-top: 2em;
    background-color: var(--white);
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.tab-pane .userInput {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-pane .userInput input {
    margin: 5px 6px 10px 6px;
    height: 35px;
    width: 39px;
    border: none;
    border-radius: 5px;
    text-align: center;
    font-family: arimo;
    font-size: 1.2rem;
    background: #eef2f3;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    font-family: "Arial";
    font-size: 14px;
    font-weight: 600;
}

@media screen and (max-width: 375px) {
    .tab-pane .userInput input {
        margin: 5px 6px 10px 6px;
        height: 30px;
        width: 30px;
    }
}

@media screen and (max-width: 320px) {
    .otp-container .otp-number-input {
        width: 32px;
        height: 32px;
        margin-right: 3px;
    }
}

/* mobile view end */

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 55px;
    /* background-color: red; */
    text-align: center;
}

footer .img_holder {
    display: flex;
    justify-content: center;
}

footer .img_holder .img {
    width: 130px;
}

footer span {
    color: rgb(0, 0, 0);
}

/* otp css end */

@media screen and (max-width: 768px) {
    .pc-view {
        display: none;
    }
}

@media screen and (min-width: 769px) {
    .mobile-view {
        display: none;
    }
}

@media screen and (max-height: 700px) {
    .container {
        height: 450px;
    }
}

/* support side bar css  */
.support-info {
    cursor: pointer;
    position: fixed;
    left: 0;
    background-color: #fff;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    width: 275px;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s all ease-in-out;
    transform: translateX(-100%);
    z-index: 11;
}

.support-info::after {
    content: "Contact";
    position: absolute;
    right: 0;
    top: 50%;
    background-color: #ff9b44;
    width: auto;
    height: 8.5rem;
    transform: translateX(100%) translateY(-50%) rotate(180deg);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-lr;
    text-orientation: sideways;
    padding: 1rem 0.4rem;
    border-radius: 14px 0 0 14px;
    letter-spacing: 3px;
}

.support-info:hover {
    transform: translateX(0);
}

.support-info h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.support-info ul {
    list-style: none;
    padding: 0;
}

.support-info ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.support-info ul li a {
    color: #555;
}

.support-info ul li i {
    color: #4caf50;
    margin-right: 5px;
}

.support-info ul li span {
    font-weight: normal;
}

.support-info ul li span:nth-of-type(1) {
    color: #808080;
    font-style: italic;
    margin: 0 5px;
}

.support-info p {
    font-size: 14px;
    color: #555;
    margin-top: 20px;
    margin-bottom: 0;
}

.sticky-info span {
    font-weight: 500;
}
.support-info .close-btn {
    font-size: 18px;
    color: #ff9b44;
    display: none;
}

@media screen and (max-width: 767px) {
    .support-info {
        visibility: hidden;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        width: 320px;
        opacity: 0;
        transition: 0.3s all ease-in-out;
    }
    .support-info::after {
        display: none;
    }
    .support-info:hover {
        transform: translate(-50%, -50%);
    }
    .resp-support {
        visibility: visible;
        opacity: 1;
        transition: 0.3s all ease-in-out;
    }
    .support-info .close-btn {
        display: block;
    }
}
/* support side bar css end */
