﻿/*Login CSS Start*/
.ghost {
    background-color: transparent;
    padding: 5px 45px;
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
}

.form-container img {
    max-width: 150px;
    padding-bottom: 15px;
}

.form-container a {
    margin-top: 10px;
}

.form-container button {
    border-radius: 20px;
    border: 1px solid #61c250;
    background-color: #61c250;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 9px 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    margin-top: 10px;
}

.form-container form {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

.form-container input {
    padding: 10px 15px;
    margin: 8px 0;
    width: 100%;
    border-radius: 5px;
    border: 1px solid gainsboro;
}

.container-n {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0px 2px rgb(66 58 145), 0 0px 0px rgb(66 58 145);
    position: relative;
    overflow: hidden;
    max-width: 1136px;
    min-height: 480px;
    margin: 0 auto;
    margin-top: 60px;

}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in-container {
    left: 45px;
    width: 59%;
    z-index: 2;
    top: 65px;
    text-align: center;
}


.custom-otp-main {
    text-align: center;
}

.custom-otp-main img {
    max-width: 145px !important;
    margin-bottom: 15px;
}


input#btnSubmit {
    margin-top: 18px;
}

.container-n.right-panel-active .sign-in-container {
    transform: translateX(100%);
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.container-n.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {
    0%, 49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%, 100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.container-n.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.sign-in-container a {
    color: #423a91;
}

.container-n h1 {
    font-size: 30px;
}

.overlay {
    background: #ff416c;
    background: -webkit-linear-gradient(to right, #ff4b2b, #ff416c);
    background: #364194;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #ffffff;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.container-n.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left {
    transform: translateX(-20%);
}

.container-n.right-panel-active .overlay-left {
    transform: translateX(0);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
}

.container-n.right-panel-active .overlay-right {
    transform: translateX(20%);
}
.card.custom-otp-card {
    margin: 0 auto;
    padding: 45px;
    max-width: 500px;
    margin-top: 100px;
}
.custom-otp-main h3 {
    font-size: 18px;
    padding-bottom: 10px;
}

.custom-otp-main p {
    padding-bottom: 10px;
}

@media only screen and (max-width: 767px) {

    .container-n {
        margin: auto !important;
    }
    .thankyou-main.card.col-md-10.bg-white.shadow-md.p-5 {
        padding: 17px !important;
        margin-top: -195px;
    }

    .custom-thank-you.text-center p {
        font-size: 15px;
    }

    .thankyou-main.card.col-md-10.bg-white.shadow-md.p-5 svg {
        padding: 10px;
    }

    .thankyou-main.card.col-md-10.bg-white.shadow-md.p-5 .mb-4 {
        margin-bottom: 0 !important;
    }
}

.swal2-title {
    font-size: 20px !important;
    margin-bottom: 0 !important;
}