﻿:root {
    /* Font Variables */
    --font-primary: 'Neue Plak', Arial, sans-serif;
    --font-secondary: 'juana-black', serif;
    --font-size-base: 16px;
    /* Colors */
    --color-primary: #0f00ff;
    --color-primary-hover: #1305d8;
    --color-secondary: #818181; /* not yet set */
    --color-secondary-hover: #0f00ff; /* not yet set */
    --color-light: #fff;
    --color-dark: #000;
    --color-dark50: #666;
    --color-red: #ff0000;
    --color-green: #23ff00;
    --color-outline-btn: #1600ff;
    --color-outline-hoverbtn: #6eff00;
    --color-transparent: transparent;
    --color-border-input: #ebebeb;
    --color-placeholder: #9b9b9b;
    --color-shadow: #ccc;
    /* Sizing */
    --input-padding: 10px;
    --input-icon-padding: 30px;
    --input-radius: 5px;
    --button-radius: 4px;
    /* Misc */
    --logincontainer-max-width: 415px;
}

@font-face {
    font-family: 'Neue Plak';
    src: url('../fonts/NeuePlak-Bold.eot');
    src: url('../fonts/NeuePlak-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/NeuePlak-Bold.woff2') format('woff2'), url('../fonts/NeuePlak-Bold.woff') format('woff'), url('../fonts/NeuePlak-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Plak';
    src: url('../fonts/NeuePlak-Regular.eot');
    src: url('../fonts/NeuePlak-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/NeuePlak-Regular.woff2') format('woff2'), url('../fonts/NeuePlak-Regular.woff') format('woff'), url('../fonts/NeuePlak-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'juana-black';
    src: url('../fonts/juana-black.woff2') format('woff2'), url('../fonts/juana-black.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    height: 100%;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--color-light);
    background: var(--color-dark);
}

main {
    display: flex;
    height: 100vh;
}
input.invalid,
textarea.invalid,
select.invalid {
    border-color: #ff0000;
}
.bold {
    font-weight: bold;
}

.form-control option {
    background: var(--color-dark);
}
.form-control[readonly] {
    cursor: not-allowed;
}
.left-section {
    /* display: flex;*/
    /* align-items: center;*/
    justify-content: center;
    background-image: url('../images/portal-login-bg.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    flex: 1;
    position: relative;
    overflow: hidden;
}
/*Bubble animation start*/
.bubble {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    position: absolute;
    background-color: white;
    bottom: -30px;
    opacity: 0.2;
    animation: bubble 15s ease-in-out infinite, sideWays 4s ease-in-out infinite alternate;
}

@keyframes bubble {
    0% {
        transform: translateY(0%);
        opacity: 0.06;
    }

    100% {
        transform: translateY(-120vh);
    }
}

@keyframes sideWays {
    0% {
        margin-left: 0px;
    }

    100% {
        margin-left: 200px;
    }
}

.bubble--1 {
    left: 10%;
    animation-delay: 0.5s;
    animation-duration: 16s;
    opacity: 0.2;
}

.bubble--2 {
    width: 15px;
    height: 15px;
    left: 40%;
    animation-delay: 1s;
    animation-duration: 10s;
    opacity: 0.1;
}

.bubble--3 {
    width: 10px;
    height: 10px;
    left: 30%;
    animation-delay: 5s;
    animation-duration: 20s;
    opacity: 0.3;
}

.bubble--4 {
    width: 25px;
    height: 25px;
    left: 40%;
    animation-delay: 8s;
    animation-duration: 17s;
    opacity: 0.2;
}

.bubble--5 {
    width: 30px;
    height: 30px;
    left: 60%;
    animation-delay: 10s;
    animation-duration: 15s;
    opacity: 0.1;
}

.bubble--6 {
    width: 10px;
    height: 10px;
    left: 80%;
    animation-delay: 3s;
    animation-duration: 30s;
    opacity: 0.4;
}

.bubble--7 {
    width: 15px;
    height: 15px;
    left: 85%;
    animation-delay: -7s;
    animation-duration: 25s;
    opacity: 0.3;
}

.bubble--9 {
    width: 20px;
    height: 20px;
    left: 50%;
    bottom: 30px;
    animation-delay: -5s;
    animation-duration: 19s;
    opacity: 0.2;
}

.bubble--10 {
    width: 40px;
    height: 40px;
    left: 30%;
    bottom: 30px;
    animation-delay: -21s;
    animation-duration: 16s;
    opacity: 0.3;
}

.bubble--11 {
    width: 30px;
    height: 30px;
    left: 60%;
    bottom: 30px;
    animation-delay: -13.75s;
    animation-duration: 20s;
    opacity: 0.3;
}

.bubble--12 {
    width: 25px;
    height: 25px;
    left: 90%;
    bottom: 30px;
    animation-delay: -10.5s;
    animation-duration: 19s;
    opacity: 0.3;
}
/*Bubble animation end*/
.typing-animation-block {
    position: relative;
    width: 100%;
    color: #000000;
    text-align: center;
}

    .typing-animation-block h1 {
        position: relative;
        display: inline-block;
        z-index: 10;
        margin-bottom: 20px;
    }

    .typing-animation-block .title {
        font-size: 30px;
        font-family: var(--font-secondary);
        color: var(--color-light);
        /*background: linear-gradient(to right, #f32170, #ff6b08, #f7005b, #eedd44);
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;*/
    }

    .typing-animation-block .titleshadow {
        position: absolute;
        top: 0px;
        width: 100%;
        left: 0;
        height: 28px;
        background: linear-gradient(90deg, #000000, #000000 41%, #000000 100%);
        z-index: -1;
        filter: blur(25px);
        -webkit-filter: blur(25px);
    }

.typing-animation {
    width: 100%;
    color: var(--color-light);
    text-align: center;
    font-weight:normal;
   /* background: linear-gradient(to right, #ef0000, #afef02, #00ff5a, #d97900);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;*/
}

.login-bg-img {
    position: absolute;
    bottom: -10px;
}

    .login-bg-img img {
        width: 300px;
        bottom: -10px;
    }
/*boat animation start*/
.boat {
    position: absolute;
    bottom: 50px; /* Keeps the boat near the "waterline" */
    left: -150px; /* Starts the boat off-screen */
    width: 200px;
    height: 140px;
    background: url('../images/boat.png') no-repeat center center; /* Assuming you have a boat image */
    background-size: contain;
    animation: moveBoat 15s linear infinite, bob 3s ease-in-out infinite;
}

/* Animation to move the boat from left to right */
@keyframes moveBoat {
    0% {
        left: -150px; /* Start off-screen */
        bottom: 0px;
    }

    25% {
        bottom: 50px; /* Start off-screen */
    }

    50% {
        bottom: 100px; /* Start off-screen */
    }

    75% {
        bottom: 50px; /* Start off-screen */
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        left: 100%; /* End off-screen on the right */
        bottom: 0px;
        opacity: 0;
    }
}

/*boat animation end*/
/* Fish animation start */
.fish {
    position: absolute;
    bottom: 100px; /* Position fish near the "water" bottom */
    left: -150px; /* Start the fish off-screen on the left */
    width: 100px;
    height: 50px;
    background: url('../images/fish.png') no-repeat center center; /* Add your fish image here */
    background-size: contain;
    animation: swim 10s linear infinite, wave 1.5s ease-in-out infinite;
}

/* Animation to move the fish from left to right */
@keyframes swim {
    0% {
        left: -150px; /* Start off-screen */
        bottom: 0px;
    }

    25% {
        bottom: 100px; /* Start off-screen */
    }

    50% {
        bottom: 200px; /* Start off-screen */
    }

    75% {
        bottom: 100px; /* Start off-screen */
        opacity: 1;
    }

    85% {
        opacity: 0;
    }

    100% {
        left: 100%; /* End off-screen on the right */
        bottom: 0px;
        opacity: 0;
    }
}

/* Animation to simulate a swimming (wave) motion */
@keyframes wave {
    0%, 100% {
        transform: translateY(0px); /* No movement at start and end */
    }

    50% {
        transform: translateY(10px); /* Fish moves slightly up */
    }
}
/* Fish animation end */
/* Fish two animation start */
.fish1 {
    position: absolute;
    bottom: 100px; /* Position fish near the "water" bottom */
    left: -150px; /* Start the fish off-screen on the left */
    width: 100px;
    height: 50px;
    background: url('../images/fish1.png') no-repeat center center; /* Add your fish image here */
    background-size: contain;
    animation: swim1 23s linear infinite, wave1 2s ease-in-out infinite;
}

/* Animation to move the fish from left to right */
@keyframes swim1 {
    0% {
        left: -150px; /* Start off-screen */
        bottom: 50px;
    }

    25% {
        bottom: 200px; /* Start off-screen */
    }

    50% {
        bottom: 400px; /* Start off-screen */
    }

    75% {
        bottom: 200px; /* Start off-screen */
        opacity: 1;
    }

    85% {
        opacity: 0;
    }

    100% {
        left: 100%; /* End off-screen on the right */
        bottom: 100px;
        opacity: 0;
    }
}

/* Animation to simulate a swimming (wave) motion */
@keyframes wave1 {
    0%, 100% {
        transform: translateY(0px); /* No movement at start and end */
    }

    50% {
        transform: translateY(10px); /* Fish moves slightly up */
    }
}
/* Fish animation end */
/* Fish animation start */
.fish2 {
    position: absolute;
    bottom: 100px; /* Position fish near the "water" bottom */
    right: -150px; /* Start the fish off-screen on the left */
    width: 100px;
    height: 50px;
    background: url('../images/fish2.png') no-repeat center center; /* Add your fish image here */
    background-size: contain;
    animation: swim2 20s linear infinite, wave2 3s ease-in-out infinite;
}

/* Animation to move the fish from left to right */
@keyframes swim2 {
    0% {
        right: 100px; /* Start off-screen */
        bottom: 0px;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    25% {
        bottom: 200px; /* Start off-screen */
    }

    50% {
        bottom: 500px; /* Start off-screen */
    }

    75% {
        bottom: 400px; /* Start off-screen */
    }

    100% {
        right: 100%; /* End off-screen on the right */
        bottom: 200px;
    }
}

/* Animation to simulate a swimming (wave) motion */
@keyframes wave2 {
    0%, 100% {
        transform: translateY(0px); /* No movement at start and end */
    }

    50% {
        transform: translateY(10px); /* Fish moves slightly up */
    }
}
/* Fish animation end */
.copyright-content {
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
    color: #ccc;
}

.logo-inner {
    text-align: center;
    margin-bottom: 20px;
}
    .logo-inner img {
        height: 55px;
    }
    .right-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0 20px;
    color: var(--color-light);
}

.login-container {
    width: 100%;
    max-width: var(--logincontainer-max-width);
    position: relative;
    z-index: 10;
}

.login-inner {
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}

    .login-inner::before {
        content: "";
        background: var(--color-dark);
        border-radius: 10px;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: -1;
    }

    .login-inner::after {
        content: "";
        background: linear-gradient(270deg, #f32170, #ff6b08, #a705a7, #eedd44);
        background-size: 800% 800%;
        -webkit-animation: gradientanimation 5s ease infinite;
        -moz-animation: gradientanimation 5s ease infinite;
        animation: gradientanimation 5s ease infinite;
        position: absolute;
        width: 101%;
        height: 101%;
        left: -.5%;
        top: -.5%;
        border-radius: 10px;
        z-index: -2;
        filter: blur(10px);
        -webkit-filter: blur(10px);
    }

.success {
    color: var(--color-green);
}

input::placeholder {
    color: var(--color-placeholder);
}

input:: -webkit-input-placeholder {
    color: var(--color-placeholder);
}

input::-ms-input-placeholder {
    color: var(--color-placeholder);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--color-transparent);
    transition: background-color 1s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #23232329;
}

@-webkit-keyframes gradientanimation {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes gradientanimation {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes gradientanimation {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.shakeanimation {
    animation: shake 15s;
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.login-inner h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.info1, .info2 {
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.info2 {
    color: var(--color-primary);
}

.text-center {
    text-align: center;
}

.input-icon {
    position: relative;
}

input:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.login-loader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    background: rgba(255,255,255,0.5);
    border-radius: 10px;
    display: none;
}

.show {
    display: block;
}
.display-flex{
    display:flex;
}
.login-loader img {
    position: absolute;
    left: calc(50% - 100px);
    right: 0;
    top: calc(50% - 100px);
    bottom: 0;
}
/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #666;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: var(--color-primary-hover);
    }
.login-icon {
    position: absolute;
    left: 8px;
    top: 37px;
    fill: var(--color-light);
    width: 15px;
}

.password-icon {
    position: absolute;
    right: 8px;
    top: 37px;
    fill: var(--color-dark50);
    width: 15px;
    cursor: pointer;
    z-index: 100;
}

    .password-icon.active + .passwordhide {
        width: 20px;
        height: 1px;
        background: #1700ff;
        position: absolute;
        z-index: 10;
        transform: rotate(-45deg);
        top: 42px;
        right: 5px;
        pointer-events: none;
    }

    .password-icon:hover, .password-icon.active {
        fill: var(--color-primary);
    }

.form-fill:hover .login-icon {
    fill: var(--color-primary);
}

.form-label {
    margin-bottom: 5px;
    display: block;
}

.form-control {
    color: var(--color-light);
    width: 100%;
    padding: var(--input-padding) 10px var(--input-padding) var(--input-icon-padding);
    border: 1px solid var(--color-border-input);
    border-radius: var(--input-radius);
    outline: inherit;
    background: var(--color-dark);

}
textarea {
    font-family: var(--font-primary)!important;
}
    .form-control:active, .form-control:focus, .form-control:focus-visible {
        border: 1px solid var(--color-primary);
    }

.form-fill {
    margin-bottom: 15px;
}

.mar-top20 {
    margin-top: 20px;
}

.mar-top15 {
    margin-top: 15px
}
.mar-left15{
    margin-left:15px;
}
.mar-right5 {
    margin-right: 5px;
}
.okta-verity {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

a, a:focus, a:visited, a:focus-visible {
    color: var(--color-light);
}

.primary-btn {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    background: linear-gradient(45deg, #0f00ff, #5a00ff);
    color: var(--color-light);
    border-radius: var(--button-radius);
    text-decoration: none;
    transition: background 2s ease-out;
    border: none;
    cursor: pointer;
}

    .primary-btn:hover {
        background: linear-gradient(135deg, #0761e0 10%, #9708CC 100%);
    }

    .primary-btn:focus {
        outline: none;
    }

.secondary-btn {
    display: block;
    width: 100%;
    padding: 7px 10px;
    text-align: center;
    color: var(--color-light);
    border: 1px solid var(--color-outline-btn);
    border-radius: var(--button-radius);
    text-decoration: none;
    transition: border 1s ease-out;
    cursor: pointer;
    font-size: 14px;
}

    .secondary-btn:hover {
        border: 1px solid var(--color-outline-hoverbtn);
    }

.login-inner ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
}

    .login-inner ul a {
        color: var(--color-light);
    }

        .login-inner ul a:hover {
            color: var(--color-outline-hoverbtn);
        }

.divider-line {
    background: linear-gradient(90deg, #000000, #555, #000000);
    height: 1px;
}

.authentication-setup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 10px transparent;
    padding: 5px;
}
.authentication-setup.active {
    box-shadow: 0 0 10px #14ff00;
}

.authentication-setup .primary-btn {
    width: auto;
}

.country-pincode {
    line-height: 36px;
    position: absolute;
    background: rgba(126, 126, 126, 0.5);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 0 5px;
}

.phonenumber {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.phone-icon {
    position: absolute;
    left: 8px;
    top: 11px;
    fill: var(--color-light);
    width: 15px;
}

.phonenumber .primary-btn {
    width: 100px;
    margin-left: 20px;
}

.text-error {
    color: var(--color-red);
}
.alert-notification img {
    width: 40px;
}

.alert-notification {
    display: flex;
    background: linear-gradient(to right, #EB4188, #1859EF);
    padding: 5px 20px;
    align-items: center;
    gap: 10px;
    border-radius: 3px;
}
.login-inner .alert-notification{
    font-size:14px;
    margin-bottom:15px;
}

/* custom dropdown start*/
.custom-dropdown {
    position: relative;
}

.dropdown-btn {
    color: var(--color-light);
    width: 100%;
    padding: 8px 10px 8px 10px;
    border: 1px solid var(--color-border-input);
    border-radius: var(--input-radius);
    outline: inherit;
    background: var(--color-transparent);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}
    .dropdown-btn:hover, .dropdown-btn:focus, .dropdown-btn:focus-visible {
        border: 1px solid var(--color-primary);
    }
        .dropdown-btn i {
    margin-right: 10px;
}
.dropdown-btn span {
    padding-left: 10px;
}
.dropdown-content {
    display: none;
    position: absolute;
    width: 100%;
    background: var(--color-dark);
    border: 1px solid var(--color-border-input);
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown-content div {
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}
.dropdown-content span{
    padding-left:15px;
}
.dropdown-content div:hover {
    background: rgba(255,255,255,0.3);
}

.dropdown-content div i {
    margin-right: 10px;
    font-size: 18px;
}

.dropdown-btn::after {
    content: "";
    border: solid var(--color-light);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    right: 10px;
}
/* custom dropdown end*/
@media only screen and (max-width: 767px) {
    .left-section {
        display: none;
    }

    .login-container {
        width: 100%;
        max-width: 100%;
    }
}
}
