:root {
    --primary-color: #C10BD2;
    --primary-color-gradient: rgba(193, 11, 210, 0.8);
    --secondary-color: #010E8F;
    --secondary-color-gradient: rgba(0, 16, 147, 0.8);
    --white-color: #ffffff;
    --gray-color: #626262;
    --blue-color: #000538;
    --black-color: #000000;
}

.text-primary-color {
    color: var(--primary-color) !important;
}

.text-secondary-color {
    color: var(--secondary-color) !important;
}

.text-blue-color {
    color: var(--blue-color) !important;
}

.text-gray-color {
    color: var(--gray-color) !important;
}

.text-black-color {
    color: var(--black-color) !important;
}

.text-white-color {
    color: var(--white-color) !important;
}

img {
    max-width: 100%;
}


.custom-form-label {
    color: var(--blue-color);
    font-weight: 500;
    font-size: 18px;
}

.custom-form-control {
    background-color: var(--white-color);
    border: 1px solid #EAEAEA;
    border-radius: 24px;
    padding: 10px 20px;
    box-shadow: 0px 4px 22px 0px #4E3FD312;
    color: var(--gray-color);
    text-align: right;
}

.custom-form-control.is-invalid {
    background-color: #FA10241A;
    box-shadow: none !important;
}

.custom-form-control.input-icon {
    padding-right: 50px;
}

.custom-form-control:focus {
    background-color: #fff;
    border: 1px solid var(--secondary-color) !important;
    box-shadow: none;
    color: var(--gray-color);
    background-image: none;
}

.custom-input-icon-box svg {
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
}

.custom-input-icon-box.password-input input {
    padding-inline: 50px !important;
}

.custom-input-icon-box.password-input a {
    display: block;
    position: absolute;
    top: 50%;
    left: 17px;
    transform: translateY(-50%);
}

.custom-input-icon-box.password-input a svg {
    position: unset;
    top: unset;
    left: unset;
    right: unset;
    transform: unset;
}

.form-check .form-check-input {
    width: 20px;
    height: 20px;
    border: 1.25px solid var(--gray-color);
    color: var(--gray-color);
    margin-top: 0;
    box-shadow: none;
}

.form-check .form-check-input:checked {
    background-color: var(--primary-color);
    border: 1.25px solid var(--primary-color);
}

.form-check .form-check-label {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    vertical-align: middle;
    color: var(--gray-color);
}

.text-gradient {
    background: -webkit-linear-gradient(270deg, var(--primary-color-gradient) -8.01%, var(--secondary-color-gradient) 152.53%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button, html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    text-align: center;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid var(--primary-color) !important;
    background: var(--primary-color) !important;
    color: #ffffff !important;
}


.auth-section {
    min-height: 100vh;
    background: -webkit-linear-gradient(174.71deg, var(--primary-color-gradient) -8.01%, var(--secondary-color-gradient) 152.53%);
}

.auth-section .right {
    background-color: var(--white-color);
    min-height: 100vh;
}


.auth-section .right .auth-card {
    border-radius: 0;
    background-color: var(--white-color);
    border: none;
}

.auth-section .auth-card .card-header {
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
}

.auth-section .auth-card .card-header .dropdown .dropdown-toggle {
    color: var(--gray-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 0;
}

.auth-section .auth-card .card-header .dropdown .dropdown-menu {
    background-color: var(--white-color);
    border-color: var(--gray-color);
    text-align: center;
}

.auth-section .auth-card .card-header .dropdown .dropdown-menu .dropdown-item {
    color: var(--gray-color);
    font-size: 16px;
    font-weight: 500;
}

.auth-section .auth-card .card-header .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: var(--gray-color);
    color: var(--white-color);
}

.auth-section .auth-card .card-header .logo {
    max-height: 55px;
}

.auth-section .auth-card .card-body .card-title {
    background: -webkit-linear-gradient(174.71deg, var(--primary-color-gradient) -8.01%, var(--secondary-color-gradient) 152.53%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    text-align: center;
    font-weight: bold;
}

.auth-section .left {
    padding: 50px;
}

.auth-section .left .title,
.auth-section .left .subtitle {
    color: var(--white-color);
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.auth-section .left .subtitle {
    margin-bottom: 40px;
}

.auth-section .left .left-image {
    margin-inline: auto;
    display: block;
    max-width: 500px;
}

.custom-gradient-button {
    background: linear-gradient(179deg, var(--primary-color-gradient) -8.01%, var(--secondary-color-gradient) 154.53%);
    color: var(--white-color);
    font-size: 22px;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid rgb(165 157 157 / 45%);
    box-shadow: 0px 9px 1px 0px #543192d1;
    min-width: 160px;
    line-height: 1;
    padding: 10px 20px;
}
.custom-gradient-button:hover, .custom-gradient-button:focus {
    color: var(--white-color) !important;
}
.auth-section .auth-link-box {
    margin-top: 30px;
}

.auth-section .auth-link-box span {
    font-weight: 400;
    font-size: 18px;
    color: var(--gray-color);
}

.auth-section .auth-link-box a {
    font-weight: 700;
    font-size: 18px;
}

.auth-section.login .reset-password-link {
    font-size: 17px;
    text-decoration: none;
    font-weight: 500;
}

.auth-section.reset .option-card {
    box-shadow: 0 4px 22px 0 #4E3FD312;
    border: none;
    border-radius: 20px;
    min-height: 230px;
}

.auth-section.reset .option-card img {
    width: 200px;
    margin-inline: auto;
}

.auth-section.verify .otp-box {
    direction: ltr;
}

.auth-section.verify .otp-box .otp-input {
    height: 50px;
    width: 70px;
    font-size: 1.5rem;
    border-radius: 8px;
    border: 1px solid #EAEAEA;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    direction: ltr;
    font-weight: bold;
}

.auth-section.verify .otp-box .otp-input:focus {
    border-color: var(--primary-color);
    outline: none;
}


.auth-section.verify .otp-box .otp-input::-webkit-inner-spin-button,
.auth-section.verify .otp-box .otp-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .auth-section .left {
        padding: 20px;
    }

    .auth-section .left .title,
    .auth-section .left .subtitle {
        font-size: 24px;
    }

    .auth-section .left .left-image {
        max-width: 100%;
    }

    .auth-section .right {
        padding: 20px;
    }

    .auth-section .right .auth-card {
        border-radius: 12px;
    }
}
