﻿@import "bootstrap-grid.min.css";
@import "normalize.css";
@import "/assets/vendor/icofont/icofont.min.css";

/* dm-sans-300 - latin */
@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/dm-sans-v14-latin-300.woff2') format('woff2');
}
/* dm-sans-300italic - latin */
@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 300;
    src: url('../fonts/dm-sans-v14-latin-300italic.woff2') format('woff2');
}
/* dm-sans-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/dm-sans-v14-latin-regular.woff2') format('woff2');
}
/* dm-sans-italic - latin */
@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/dm-sans-v14-latin-italic.woff2') format('woff2');
}
/* dm-sans-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/dm-sans-v14-latin-500.woff2') format('woff2');
}
/* dm-sans-500italic - latin */
@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 500;
    src: url('../fonts/dm-sans-v14-latin-500italic.woff2') format('woff2');
}
/* dm-sans-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/dm-sans-v14-latin-600.woff2') format('woff2');
}
/* dm-sans-600italic - latin */
@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 600;
    src: url('../fonts/dm-sans-v14-latin-600italic.woff2') format('woff2');
}
/* dm-sans-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/dm-sans-v14-latin-700.woff2') format('woff2');
}
/* dm-sans-700italic - latin */
@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 700;
    src: url('../fonts/dm-sans-v14-latin-700italic.woff2') format('woff2');
}
/* dm-sans-800 - latin */
@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/dm-sans-v14-latin-800.woff2') format('woff2');
}
/* dm-sans-800italic - latin */
@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 800;
    src: url('../fonts/dm-sans-v14-latin-800italic.woff2') format('woff2');
}


:root {
    --bc-color-primary: #166094;
    --bc-color-primary-dark: #073e65;
    --bc-color-primary-light: #eaf6ff;
    --bc-color-secondary: #a3195b;
    --bc-color-secondary-dark: #75053b;
    --bc-color-secondary-light: #ffe2f0;
    --bc-gradient-primary: 270deg, #662483 0%, #ab2c69 100%;
    --bc-font-main: 'DM Sans', sans-serif;
    --bc-font-xlarge: 20px;
    --bc-font-large: 18px;
    --bc-font-normal: 16px;
    --bc-font-small: 14px;
    --bc-font-xsmall: 12px;
    --border-radius-1: 6px;
    --border-radius-2: 12px;
    --border-radius-3: 100px;
    --border-radius-4: 50%;
    --shadow-1: 0 1px 2px 2px #00000020;
    --shadow-2: 0 6px 10px 0px #00000021;
    --shadow-3: 0 8px 16px 0px #00000020;
    --transition-1: 0.2s;
    --transition-2: 256ms ease-in-out;
    --transition-3: transform .85s cubic-bezier(.23,1,.32,1),background .3s,border .3s,border-radius .3s,box-shadow .3s;
    --transition-4: all .25s cubic-bezier(.645,.045,.355,1);
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    background: var(--bs-dark);
    height: 100%;
    line-height: 1.1;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}


body {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--bc-font-small);
    color: var(--bs-black);
    background-color: var(--bs-light);
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: var(--bc-color-primary);
}

p {
    margin: 0 0 8px 0;
    line-height: 1.4;
}

hr {
    border: 1px solid #073e651c;
    margin: 10px 0px;
    position: relative;
}

input, textarea, select {
    display: block;
    width: 100%;
    outline: none;
    min-height: 36px;
    margin-bottom: 8px;
    padding: 0.45rem 0.45rem;
    font-family: 'DM SANS', sans-serif;
    font-size: var(--bc-font-xsmall);
    font-weight: 400;
    background-clip: padding-box;
    border: 1px solid var(--bs-border-color-translucent);
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    input:focus-visible, textarea:focus-visible, select:focus-visible {
        border: 1px solid var(--bc-color-primary);
        background: var(--bc-color-primary-light);
    }

.custom-checkbox {
    display: flex;
}

input[type=checkbox] {
    height: unset;
    width: unset;
    margin: 0 6px 0 0;
    min-height: 1.6rem;
}

        input[type=checkbox] + label {
            align-self: center;
            margin-bottom: 0;
        }

            input[type=checkbox] + label:hover {
                cursor: pointer;
            }

            input[type=checkbox]:hover {
                cursor: pointer;
            }

.form-group span, .form-group label {
    margin-bottom: 4px;
    display: inline-block;
}

/* Other Helpers */

.overflow-y-10 {
    overflow-y: auto;
    max-height: 10vh;
}

.overflow-y-15 {
    overflow-y: auto;
    max-height: 15vh;
}

.overflow-y-20 {
    overflow-y: auto;
    max-height: 20vh;
}

.overflow-y-25 {
    overflow-y: auto;
    max-height: 25vh;
}

.overflow-y-30 {
    overflow-y: auto;
    max-height: 30vh;
}

.overflow-y-35 {
    overflow-y: auto;
    max-height: 35vh;
}

.overflow-y-40 {
    overflow-y: auto;
    max-height: 40vh;
}

.overflow-y-45 {
    overflow-y: auto;
    max-height: 45vh;
}

.overflow-y-50 {
    overflow-y: auto;
    max-height: 50vh;
}

.overflow-y-55 {
    overflow-y: auto;
    max-height: 55vh;
}

.overflow-y-60 {
    overflow-y: auto;
    max-height: 60vh;
}

.overflow-y-65 {
    overflow-y: auto;
    max-height: 65vh;
}

.overflow-y-70 {
    overflow-y: auto;
    max-height: 70vh;
}

.overflow-y-75 {
    overflow-y: auto;
    max-height: 75vh;
}

.overflow-y-80 {
    overflow-y: auto;
    max-height: 80vh;
}

.overflow-y-85 {
    overflow-y: auto;
    max-height: 85vh;
}

.overflow-y-90 {
    overflow-y: auto;
    max-height: 90vh;
}

.overflow-y-95 {
    overflow-y: auto;
    max-height: 95vh;
}

.overflow-y-100 {
    overflow-y: auto;
    max-height: 100vh;
}

/* Button Styles */

.btn {
    display: inline-block;
    width: 100%;
    padding: 0.45rem 0.45rem !important;
    border-radius: var(--border-radius-1);
    font-size: var(--bc-font-small);
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    outline: none;
    border: 0;
}

.btn-sm {
    padding: 8px 10px !important;
    font-size: var(--bc-font-small);
    align-self: center;
}

    .btn:hover, .btn-sm:hover {
        cursor: pointer;
    }

.btn-primary {
    background: var(--bc-color-primary);
    color: var(--bc-color-primary-light);
}

.btn-primary-outline {
    border: 1px solid var(--bc-color-primary);
    color: var(--bc-color-primary);
}

    .btn-primary-outline:hover {
        border: 1px solid var(--bc-color-primary);
        background: var(--bc-color-primary-light);
        color: var(--bc-color-primary);
    }

/* Color System */

.bc-primary {
    color: var(--bc-color-primary);
}

.bc-primary-dark {
    color: var(--bc-color-primary-dark);
}

.bc-primary-light {
    color: var(--bc-color-primary-light);
}

.bc-gradient-primary {
    background: var(--bc-gradient-primary);
}

.bc-light {
    color: var(--bs-white);
}

.bc-dark {
    color: var(--bs-dark);
}


/* Backgrounds */

.bg-danger {
    background: var(--bs-red);
}

.bg-success {
    background: var(--bs-success);
}

.bg-warning {
    background: var(--bs-yellow);
}

.bg-light {
    background: var(--bs-white);
}

.bg-dark {
    background: var(--bs-dark);
}

/* Modal Info Icons */

.modal-icon-error {
    font-family: IcoFont !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    background: var(--bs-danger);
    color: var(--bs-white);
    border-radius: var(--border-radius-4);
}

    .modal-icon-error:before {
        content: "\eee4";
    }

.modal-icon-warning {
    font-family: IcoFont !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    background: var(--bs-yellow);
    color: var(--bs-white);
    border-radius: var(--border-radius-4);
}

    .modal-icon-warning:before {
        content: "\ef1c";
    }

.modal-icon-success {
    font-family: IcoFont !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    background: var(--bs-success);
    color: var(--bs-white);
    border-radius: var(--border-radius-4);
}

    .modal-icon-success:before {
        content: "\eed8";
    }

/* Font Helpers */

.font-normal {
    font-size: var(--bc-font-normal);
}

.font-large {
    font-size: var(--bc-font-large);
}

.font-large {
    font-size: var(--bc-font-xlarge);
}

.font-small {
    font-size: var(--bc-font-small);
}

.font-xsmall {
    font-size: var(--bc-font-xsmall);
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

/* Borders */

.border-1 {
    border-radius: var(--border-radius-1);
}

.border-2 {
    border-radius: var(--border-radius-2);
}

.border-3 {
    border-radius: var(--border-radius-3);
}

.border-rounded {
    border-radius: var(--border-radius-4);
}

/* Desktop % Nobile Hide and Show */

.d-desktop {
    display: block !important;
}

.d-mobile {
    display: none !important;
}

@media only screen and (min-width: 600px) {
    .d-desktop {
        display: none !important;
    }

    .d-mobile {
        display: block !important;
    }
}


.guvenlik-sorusu-div {
    border: 1px solid var(--bc-color-primary);
    padding: 4px 8px;
    border-radius: var(--border-radius-1);
    background: var(--bs-gray-100);
    margin: 0;
    align-items: center;
}

    .guvenlik-sorusu-div input {
        margin-bottom: unset;
    }


/* Login Design */

.login {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*background: var(--bs-border-color);*/
}

    .login > div:first-child {
    }

.login-bg {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1009%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='url(%23SvgjsLinearGradient1010)'%3e%3c/rect%3e%3cuse xlink:href='%23SvgjsSymbol1017' x='0' y='0'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsSymbol1017' x='720' y='0'%3e%3c/use%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1009'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='15.28%25' y1='-39.29%25' x2='84.72%25' y2='139.29%25' gradientUnits='userSpaceOnUse' id='SvgjsLinearGradient1010'%3e%3cstop stop-color='rgba(255%2c 255%2c 255%2c 1)' offset='0'%3e%3c/stop%3e%3cstop stop-color='rgba(237%2c 237%2c 237%2c 1)' offset='1'%3e%3c/stop%3e%3c/linearGradient%3e%3cpath d='M-1 0 a1 1 0 1 0 2 0 a1 1 0 1 0 -2 0z' id='SvgjsPath1013'%3e%3c/path%3e%3cpath d='M-3 0 a3 3 0 1 0 6 0 a3 3 0 1 0 -6 0z' id='SvgjsPath1014'%3e%3c/path%3e%3cpath d='M-5 0 a5 5 0 1 0 10 0 a5 5 0 1 0 -10 0z' id='SvgjsPath1012'%3e%3c/path%3e%3cpath d='M2 -2 L-2 2z' id='SvgjsPath1015'%3e%3c/path%3e%3cpath d='M6 -6 L-6 6z' id='SvgjsPath1011'%3e%3c/path%3e%3cpath d='M30 -30 L-30 30z' id='SvgjsPath1016'%3e%3c/path%3e%3c/defs%3e%3csymbol id='SvgjsSymbol1017'%3e%3cuse xlink:href='%23SvgjsPath1011' x='30' y='30' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='30' y='90' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='30' y='150' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='30' y='210' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='30' y='270' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='30' y='330' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='30' y='390' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='30' y='450' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='30' y='510' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1013' x='30' y='570' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1014' x='90' y='30' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='90' y='90' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='90' y='150' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='90' y='210' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1014' x='90' y='270' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='90' y='330' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='90' y='390' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='90' y='450' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='90' y='510' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='90' y='570' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='150' y='30' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='150' y='90' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='150' y='150' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='150' y='210' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='150' y='270' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='150' y='330' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='150' y='390' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1016' x='150' y='450' stroke='rgba(205%2c 213%2c 221%2c 1)' stroke-width='3'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='150' y='510' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1013' x='150' y='570' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='210' y='30' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='210' y='90' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='210' y='150' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='210' y='210' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1013' x='210' y='270' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='210' y='330' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='210' y='390' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='210' y='450' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1013' x='210' y='510' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1013' x='210' y='570' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='270' y='30' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='270' y='90' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='270' y='150' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='270' y='210' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='270' y='270' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='270' y='330' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='270' y='390' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1014' x='270' y='450' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='270' y='510' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='270' y='570' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='330' y='30' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='330' y='90' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='330' y='150' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='330' y='210' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='330' y='270' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='330' y='330' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='330' y='390' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='330' y='450' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1016' x='330' y='510' stroke='rgba(205%2c 213%2c 221%2c 1)' stroke-width='3'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='330' y='570' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='390' y='30' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='390' y='90' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='390' y='150' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='390' y='210' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='390' y='270' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='390' y='330' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='390' y='390' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1013' x='390' y='450' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='390' y='510' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='390' y='570' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='450' y='30' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='450' y='90' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='450' y='150' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1014' x='450' y='210' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1014' x='450' y='270' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='450' y='330' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1013' x='450' y='390' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1016' x='450' y='450' stroke='rgba(205%2c 213%2c 221%2c 1)' stroke-width='3'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1016' x='450' y='510' stroke='rgba(205%2c 213%2c 221%2c 1)' stroke-width='3'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1013' x='450' y='570' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='510' y='30' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='510' y='90' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1013' x='510' y='150' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1013' x='510' y='210' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='510' y='270' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='510' y='330' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='510' y='390' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='510' y='450' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='510' y='510' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='510' y='570' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='570' y='30' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='570' y='90' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='570' y='150' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='570' y='210' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1013' x='570' y='270' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='570' y='330' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='570' y='390' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='570' y='450' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='570' y='510' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='570' y='570' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='630' y='30' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='630' y='90' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='630' y='150' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='630' y='210' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='630' y='270' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='630' y='330' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='630' y='390' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='630' y='450' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='630' y='510' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='630' y='570' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='690' y='30' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='690' y='90' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='690' y='150' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='690' y='210' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1014' x='690' y='270' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1015' x='690' y='330' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='690' y='390' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1011' x='690' y='450' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1014' x='690' y='510' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1012' x='690' y='570' stroke='rgba(205%2c 213%2c 221%2c 1)'%3e%3c/use%3e%3c/symbol%3e%3c/svg%3e");
    background-size: cover;
    background-color: #46e5ff6e;
    background-blend-mode: color-burn;
}

.login-bg-alt {
    background: rgba(0, 0, 0, 0.38);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(13.3px);
    -webkit-backdrop-filter: blur(13.3px);
    border: 1px solid rgba(0, 0, 0, 0.13);
}

.login-bg-alt-2 {
    background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='50.41' height='87' patternTransform='scale(2) rotate(0)'><rect x='0' y='0' width='100%' height='100%' fill='hsla(0,0%,100%,1)'/><path d='M25.3 87L12.74 65.25m0 14.5h-25.12m75.18 0H37.68M33.5 87l25.28-43.5m-50.23 29l4.19 7.25L16.92 87h-33.48m33.48 0h16.75-8.37zM8.55 72.5L16.92 58m50.06 29h-83.54m79.53-50.75L50.4 14.5M37.85 65.24L50.41 43.5m0 29l12.56-21.75m-50.24-14.5h25.12zM33.66 29l4.2 7.25 4.18 7.25M33.67 58H16.92l-4.18-7.25M-8.2 72.5l20.92-36.25L33.66 0m25.12 72.5H42.04l-4.19-7.26L33.67 58l4.18-7.24 4.19-7.25M33.67 29l8.37-14.5h16.74m0 29H8.38m29.47 7.25H12.74M50.4 43.5L37.85 21.75m-.17 58L25.12 58M12.73 36.25L.18 14.5M0 43.5l-12.55-21.75M24.95 29l12.9-21.75M12.4 21.75L25.2 0M12.56 7.25h-25.12m75.53 0H37.85M58.78 43.5L33.66 0h33.5m-83.9 0h83.89M33.32 29H16.57l-4.18-7.25-4.2-7.25m.18 29H-8.37M-16.74 0h33.48l-4.18 7.25-4.18 7.25H-8.37m8.38 58l12.73-21.75m-25.3 14.5L0 43.5m-8.37-29l21.1 36.25 20.94 36.24M8.37 72.5H-8.36'  stroke-width='1' stroke='hsla(258.5,59.4%,59.4%,1)' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>");
    background-size: cover;
    background-color: #46e5ff6e;
    background-blend-mode: color-burn;
    backdrop-filter: blur( 15px );
    -webkit-backdrop-filter: blur( 15px );
}

.login-bg-alt-3 {
    background-color: #8416FF;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1200 800'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='600' y1='25' x2='600' y2='777'%3E%3Cstop offset='0' stop-color='%238416FF'/%3E%3Cstop offset='1' stop-color='%23E0F'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='650' y1='25' x2='650' y2='777'%3E%3Cstop offset='0' stop-color='%238e14ff'/%3E%3Cstop offset='1' stop-color='%23d800f3'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' gradientUnits='userSpaceOnUse' x1='700' y1='25' x2='700' y2='777'%3E%3Cstop offset='0' stop-color='%239712ff'/%3E%3Cstop offset='1' stop-color='%23c300e6'/%3E%3C/linearGradient%3E%3ClinearGradient id='d' gradientUnits='userSpaceOnUse' x1='750' y1='25' x2='750' y2='777'%3E%3Cstop offset='0' stop-color='%23a110ff'/%3E%3Cstop offset='1' stop-color='%23ad00da'/%3E%3C/linearGradient%3E%3ClinearGradient id='e' gradientUnits='userSpaceOnUse' x1='800' y1='25' x2='800' y2='777'%3E%3Cstop offset='0' stop-color='%23ab0eff'/%3E%3Cstop offset='1' stop-color='%239700ce'/%3E%3C/linearGradient%3E%3ClinearGradient id='f' gradientUnits='userSpaceOnUse' x1='850' y1='25' x2='850' y2='777'%3E%3Cstop offset='0' stop-color='%23b40cff'/%3E%3Cstop offset='1' stop-color='%238200c1'/%3E%3C/linearGradient%3E%3ClinearGradient id='g' gradientUnits='userSpaceOnUse' x1='900' y1='25' x2='900' y2='777'%3E%3Cstop offset='0' stop-color='%23be0aff'/%3E%3Cstop offset='1' stop-color='%236c00b5'/%3E%3C/linearGradient%3E%3ClinearGradient id='h' gradientUnits='userSpaceOnUse' x1='950' y1='25' x2='950' y2='777'%3E%3Cstop offset='0' stop-color='%23c708ff'/%3E%3Cstop offset='1' stop-color='%235700a8'/%3E%3C/linearGradient%3E%3ClinearGradient id='i' gradientUnits='userSpaceOnUse' x1='1000' y1='25' x2='1000' y2='777'%3E%3Cstop offset='0' stop-color='%23d106ff'/%3E%3Cstop offset='1' stop-color='%2341009c'/%3E%3C/linearGradient%3E%3ClinearGradient id='j' gradientUnits='userSpaceOnUse' x1='1050' y1='25' x2='1050' y2='777'%3E%3Cstop offset='0' stop-color='%23db04ff'/%3E%3Cstop offset='1' stop-color='%232b0090'/%3E%3C/linearGradient%3E%3ClinearGradient id='k' gradientUnits='userSpaceOnUse' x1='1100' y1='25' x2='1100' y2='777'%3E%3Cstop offset='0' stop-color='%23e402ff'/%3E%3Cstop offset='1' stop-color='%23160083'/%3E%3C/linearGradient%3E%3ClinearGradient id='l' gradientUnits='userSpaceOnUse' x1='1150' y1='25' x2='1150' y2='777'%3E%3Cstop offset='0' stop-color='%23E0F'/%3E%3Cstop offset='1' stop-color='%23007'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg %3E%3Crect fill='url(%23a)' width='1200' height='800'/%3E%3Crect fill='url(%23b)' x='100' width='1100' height='800'/%3E%3Crect fill='url(%23c)' x='200' width='1000' height='800'/%3E%3Crect fill='url(%23d)' x='300' width='900' height='800'/%3E%3Crect fill='url(%23e)' x='400' width='800' height='800'/%3E%3Crect fill='url(%23f)' x='500' width='700' height='800'/%3E%3Crect fill='url(%23g)' x='600' width='600' height='800'/%3E%3Crect fill='url(%23h)' x='700' width='500' height='800'/%3E%3Crect fill='url(%23i)' x='800' width='400' height='800'/%3E%3Crect fill='url(%23j)' x='900' width='300' height='800'/%3E%3Crect fill='url(%23k)' x='1000' width='200' height='800'/%3E%3Crect fill='url(%23l)' x='1100' width='100' height='800'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
    animation: gradient 15s ease infinite;
}

.login-bg-alt-4 {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" viewBox="0 0 800 800"><defs><linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="gggyrate-grad"><stop stop-color="hsl(206, 75%, 49%)" stop-opacity="1" offset="0%"></stop><stop stop-color="hsl(331, 90%, 56%)" stop-opacity="1" offset="100%"></stop></linearGradient></defs><g stroke-width="5" stroke="url(%23gggyrate-grad)" fill="none"><path d="M372.05631645215544 -3.0238136378602007C389.34788671583897 -13.005308302029164 410.6521743193173 -13.005308302029164 427.9437445830008 -3.0210192664536635L735.0563396476213 174.29022959287227C752.3479099113048 184.27172425704129 763.0000537130439 202.72295865443982 763.0000537130439 222.68874235418434V577.3112400728363C763.0000537130439 597.2770237725808 752.3479099113048 615.7282581699794 735.0563396476213 625.7125472055549L427.9437445830008 803.0237960648808C410.6521743193173 813.0052907290496 389.34788671583897 813.0052907290496 372.05631645215544 803.0210016934743L64.94372138753494 625.7097528341484C47.65215112385147 615.7282581699794 37.00000732211237 597.2770237725808 37.00000732211237 577.3112400728363V222.68874235418434C37.00000732211237 202.72295865443982 47.65215112385147 184.27172425704129 64.94372138753494 174.28743522146584L372.05631645215544 -3.0238136378602007Z " transform="rotate(44, 400, 400)" opacity="0.05"></path><path d="M373.32648527331116 15.295470732264448C389.8320750704635 5.76768037101229 410.1679859646928 5.76768037101229 426.6735757618451 15.298138086788924L719.8265074144375 184.5497847252364C736.3320972115899 194.07757508648865 746.5000526587046 211.69011701127818 746.5000526587046 230.74836508830708V569.251658365202C746.5000526587046 588.309906442231 736.3320972115899 605.9224483670205 719.8265074144375 615.4529060827971L426.6735757618451 784.7045527212445C410.1679859646928 794.2323430824968 389.8320750704635 794.2323430824968 373.32648527331116 784.70188536672L80.17355362071874 615.4502387282727C63.66796382356631 605.9224483670205 53.50000837645172 588.309906442231 53.50000837645172 569.251658365202V230.74836508830708C53.50000837645172 211.69011701127818 63.66796382356631 194.07757508648865 80.17355362071874 184.54711737071204L373.32648527331116 15.295470732264448Z " transform="rotate(42, 400, 400)" opacity="0.10"></path><path d="M374.59665409446666 33.61472458481103C390.316263425088 24.540638526475618 409.68379761006827 24.540638526475618 425.4034069406896 33.61726492245333L704.5966751812537 194.80930934002242C720.3162845118751 203.88339539835783 730.0000516043651 220.6572448505383 730.0000516043651 238.80795730485158V561.1920461399895C730.0000516043651 579.3427585943028 720.3162845118751 596.1166080464833 704.5966751812537 605.1932344424611L425.4034069406896 766.3852788600301C409.68379761006827 775.4593649183655 390.316263425088 775.4593649183655 374.59665409446666 766.3827385223879L95.40338585390253 605.1906941048188C79.68377652328115 596.1166080464833 70.00000943079107 579.3427585943028 70.00000943079107 561.1920461399895V238.80795730485158C70.00000943079107 220.6572448505383 79.68377652328115 203.88339539835783 95.40338585390253 194.80676900238012L374.59665409446666 33.61472458481103Z " transform="rotate(40, 400, 400)" opacity="0.14"></path><path d="M375.86682291562227 51.93397843735761C390.8004517797125 43.31359668193895 409.19960925544376 43.31359668193895 424.133238119534 51.93639175811779L689.3668429480699 205.06883395480838C704.3004718121601 213.68921571022702 713.5000505500258 229.62437268979852 713.5000505500258 246.86754952139609V553.1324339147773C713.5000505500258 570.3756107463748 704.3004718121601 586.3107677259463 689.3668429480699 594.9335628021252L424.133238119534 748.0660049988157C409.19960925544376 756.6863867542344 390.8004517797125 756.6863867542344 375.86682291562227 748.0635916780556L110.63321808708628 594.9311494813651C95.69958922299605 586.3107677259463 86.50001048513042 570.3756107463748 86.50001048513042 553.1324339147773V246.86754952139609C86.50001048513042 229.62437268979852 95.69958922299605 213.68921571022702 110.63321808708628 205.06642063404826L375.86682291562227 51.93397843735761Z " transform="rotate(38, 400, 400)" opacity="0.19"></path><path d="M377.1369917367779 70.25326280748226C391.284640134337 62.0865853549804 408.71542090081925 62.0865853549804 422.8630692983784 70.25554911136038L674.1370107148862 215.32838908717247C688.2846591124454 223.49506653967438 697.0000494956864 238.59153104663687 697.0000494956864 254.92717225551877V545.0728522071431C697.0000494956864 561.408493416025 688.2846591124454 576.5049579229874 674.1370107148862 584.6739216793674L422.8630692983784 729.7467616551794C408.71542090081925 737.9134391076814 391.284640134337 737.9134391076814 377.1369917367779 729.7444753513015L125.86305032027008 584.6716353754892C111.7154019227109 576.5049579229874 103.00001153946977 561.408493416025 103.00001153946977 545.0728522071431V254.92717225551877C103.00001153946977 238.59153104663687 111.7154019227109 223.49506653967438 125.86305032027008 215.32610278329446L377.1369917367779 70.25326280748226Z " transform="rotate(36, 400, 400)" opacity="0.23"></path><path d="M378.40716055793337 88.57251666002884C391.7688284889615 80.85954351044373 408.23123254619475 80.85954351044373 421.5929004772229 88.57467594702479L658.9071784817024 225.58791370195854C672.2688464127306 233.30088685154362 680.5000484413472 247.55865888589705 680.5000484413472 262.9867644720633V537.0132399819307C680.5000484413472 552.441345568097 672.2688464127306 566.6991176024503 658.9071784817024 574.4142500390315L421.5929004772229 711.4274877939652C408.23123254619475 719.1404609435502 391.7688284889615 719.1404609435502 378.40716055793337 711.4253285069692L141.09288255345388 574.4120907520355C127.73121462242574 566.6991176024503 119.50001259380912 552.441345568097 119.50001259380912 537.0132399819307V262.9867644720633C119.50001259380912 247.55865888589705 127.73121462242574 233.30088685154362 141.09288255345388 225.5857544149626L378.40716055793337 88.57251666002884Z " transform="rotate(34, 400, 400)" opacity="0.28"></path><path d="M379.677329379089 106.89177051257536C392.253016843586 99.63250166590706 407.74704419157024 99.63250166590706 420.3227316560673 106.89380278268925L643.6773462485187 235.8474383167445C656.2530337130157 243.1067071634128 664.0000473870078 256.5257867251572 664.0000473870078 271.04635668860783V528.9536277567183C664.0000473870078 543.4741977201688 656.2530337130157 556.8932772819132 643.6773462485187 564.1545783986953L420.3227316560673 693.1082139327507C407.74704419157024 700.367482779419 392.253016843586 700.367482779419 379.677329379089 693.1061816626369L156.32271478663762 564.1525461285817C143.74702732214058 556.8932772819132 136.00001364814847 543.4741977201688 136.00001364814847 528.9536277567183V271.04635668860783C136.00001364814847 256.5257867251572 143.74702732214058 243.1067071634128 156.32271478663762 235.84540604663067L379.677329379089 106.89177051257536Z " transform="rotate(32, 400, 400)" opacity="0.32"></path><path d="M380.94748294145546 125.21105488270007C392.73718993942146 118.40549033894851 407.26284057815667 118.40549033894851 419.0525475761226 125.21296013593178L628.4474987565458 246.1069934491086C640.2372057545117 252.91255799286017 647.5000310738794 265.4929450819956 647.5000310738794 279.10597942273046V520.8940460490841C647.5000310738794 534.507080389819 640.2372057545117 547.0874674789543 628.4474987565458 553.8949372759375L419.0525475761226 674.7889705891145C407.26284057815667 681.594535132866 392.73718993942146 681.594535132866 380.94748294145546 674.7870653358827L171.55253176103236 553.8930320227059C159.76282476306636 547.0874674789543 152.49999944369875 534.507080389819 152.49999944369875 520.8940460490841V279.10597942273046C152.49999944369875 265.4929450819956 159.76282476306636 252.91255799286017 171.55253176103236 246.10508819587687L380.94748294145546 125.21105488270007Z " transform="rotate(30, 400, 400)" opacity="0.37"></path><path d="M382.21763650382195 143.53030873524665C393.2213630352569 137.17844849441184 406.7786369647431 137.17844849441184 417.78236349617805 143.53208697159624L613.2176512645729 256.3665180638946C624.2213777960078 262.7183783047294 631.0000147607509 274.46007292125574 631.0000147607509 287.165571639275V512.8344338238717C631.0000147607509 525.539932541891 624.2213777960078 537.2816271584173 613.2176512645729 543.6352656356016L417.78236349617805 656.4696967279C406.7786369647431 662.8215569687349 393.2213630352569 662.8215569687349 382.21763650382195 656.4679184915504L186.7823487354271 543.6334873992521C175.77862220399214 537.2816271584173 168.99998523924904 525.539932541891 168.99998523924904 512.8344338238717V287.165571639275C168.99998523924904 274.46007292125574 175.77862220399214 262.7183783047294 186.7823487354271 256.364739827545L382.21763650382195 143.53030873524665Z " transform="rotate(28, 400, 400)" opacity="0.41"></path><path d="M383.48780532497756 161.84956258779317C393.7055513898814 155.95140664987517 406.2944486101186 155.95140664987517 416.51219467502244 161.8512138072607L597.9878190313891 266.62604267868056C608.205565096293 272.5241986165986 614.5000137064116 283.4272007605159 614.5000137064116 295.2251638558196V504.7748215986593C614.5000137064116 516.5727846939628 608.205565096293 527.4757868378802 597.9878190313891 533.3755939952657L416.51219467502244 638.1504228666856C406.2944486101186 644.0485788046037 393.7055513898814 644.0485788046037 383.48780532497756 638.1487716472182L202.01218096861083 533.3739427757982C191.79443490370699 527.4757868378802 185.4999862935884 516.5727846939628 185.4999862935884 504.7748215986593V295.2251638558196C185.4999862935884 283.4272007605159 191.79443490370699 272.5241986165986 202.01218096861083 266.62439145921314L383.48780532497756 161.84956258779317Z " transform="rotate(26, 400, 400)" opacity="0.46"></path><path d="M384.75797414613317 180.16884695791788C394.1897397445059 174.72439532291662 405.8102602554941 174.72439532291662 415.24202585386683 180.17037116050324L582.7579867982054 276.8855978110447C592.1897523965781 282.3300494460459 598.0000126520722 292.39435911735427 598.0000126520722 303.2847865899422V496.715239891025C598.0000126520722 507.60566736361295 592.1897523965781 517.6699770349212 582.7579867982054 523.1159528725079L415.24202585386683 619.8311795230493C405.8102602554941 625.2756311580506 394.1897397445059 625.2756311580506 384.75797414613317 619.829655320464L217.24201320179463 523.1144286699225C207.81024760342183 517.6699770349212 201.99998734792774 507.60566736361295 201.99998734792774 496.715239891025V303.2847865899422C201.99998734792774 292.39435911735427 207.81024760342183 282.3300494460459 217.24201320179463 276.88407360845935L384.75797414613317 180.16884695791788Z " transform="rotate(24, 400, 400)" opacity="0.50"></path><path d="M386.02814296728866 198.48808555167534C394.6739280991304 193.4973382195909 405.3260719008696 193.4973382195909 413.97185703271134 198.48948273737864L567.5281545650216 287.1451071670416C576.1739396968633 292.13585449912614 581.500011597733 301.3614716978254 581.500011597733 311.34436354769764V488.6556124070237C581.500011597733 498.6385042568959 576.1739396968633 507.8641214555952 567.5281545650216 512.856265973383L413.97185703271134 601.5118904030459C405.3260719008696 606.5026377351303 394.6739280991304 606.5026377351303 386.02814296728866 601.5104932173426L232.47184543497843 512.8548687876796C223.82606030313667 507.8641214555952 218.4999884022671 498.6385042568959 218.4999884022671 488.6556124070237V311.34436354769764C218.4999884022671 301.3614716978254 223.82606030313667 292.13585449912614 232.47184543497843 287.14370998133836L386.02814296728866 198.48808555167534Z " transform="rotate(22, 400, 400)" opacity="0.55"></path><path d="M387.29831178844427 216.80735466301098C395.15811645375493 212.27031163384328 404.84188354624507 212.27031163384328 412.70168821155573 216.80862483183216L552.2983223318378 297.4046470406167C560.1581269971484 301.9416900697844 565.0000105433935 310.3286147958746 565.0000105433935 319.40397102303126V480.59601544060024C565.0000105433935 489.67137166775683 560.1581269971484 498.05829639384706 552.2983223318378 502.596609591836L412.70168821155573 583.1926318006206C404.84188354624507 587.7296748297882 395.15811645375493 587.7296748297882 387.29831178844427 583.1913616317994L247.70167766816218 502.5953394230148C239.84187300285151 498.05829639384706 234.99998945660644 489.67137166775683 234.99998945660644 480.59601544060024V319.40397102303126C234.99998945660644 310.3286147958746 239.84187300285151 301.9416900697844 247.70167766816218 297.40337687179556L387.29831178844427 216.80735466301098Z " transform="rotate(20, 400, 400)" opacity="0.59"></path><path d="M388.5684806095999 235.12662377434663C395.64230480837944 231.04328504809567 404.35769519162056 231.04328504809567 411.4315193904001 235.12776692628563L537.068490098654 307.6641869141917C544.1423142974336 311.74752564044263 548.5000094890542 319.2957578939239 548.5000094890542 327.4635784983649V472.536418474177C548.5000094890542 480.70423907861795 544.1423142974336 488.25247133209916 537.068490098654 492.33695321028915L411.4315193904001 564.8733731981952C404.35769519162056 568.9567119244462 395.64230480837944 568.9567119244462 388.5684806095999 564.8722300462562L262.931509901346 492.33581005835003C255.85768570256636 488.25247133209916 251.49999051094585 480.70423907861795 251.49999051094585 472.536418474177V327.4635784983649C251.49999051094585 319.2957578939239 255.85768570256636 311.74752564044263 262.931509901346 307.6630437622527L388.5684806095999 235.12662377434663Z " transform="rotate(18, 400, 400)" opacity="0.64"></path><path d="M389.8386494307554 253.4458928856822C396.12649316300394 249.81625846234806 403.87350683699606 249.81625846234806 410.1613505692446 253.44690902073916L521.8386578654703 317.9237267877668C528.1265015977187 321.55336121110093 532.0000084347148 328.26290099197314 532.0000084347148 335.52318597369845V464.4768215077537C532.0000084347148 471.73710648947895 528.1265015977187 478.44664627035115 521.8386578654703 482.0772968287422L410.1613505692446 546.5541145957699C403.87350683699606 550.183749019104 396.12649316300394 550.183749019104 389.8386494307554 546.553098460713L278.1613421345298 482.07628069368536C271.8734984022812 478.44664627035115 267.9999915652852 471.73710648947895 267.9999915652852 464.4768215077537V335.52318597369845C267.9999915652852 328.26290099197314 271.8734984022812 321.55336121110093 278.1613421345298 317.92271065270984L389.8386494307554 253.4458928856822Z " transform="rotate(16, 400, 400)" opacity="0.68"></path><path d="M391.108818251911 271.76513147943973C396.61068151762845 268.58920135902235 403.38931848237155 268.58920135902235 408.891181748089 271.76602059761456L506.6088256322864 328.1832361437637C512.1106888980039 331.3591662641811 515.5000073803755 337.23001357244425 515.5000073803755 343.5827629314539V456.41719402375224C515.5000073803755 462.7699433827619 512.1106888980039 468.6407906910251 506.6088256322864 471.8176099296172L408.891181748089 528.2348254757665C403.38931848237155 531.4107555961839 396.61068151762845 531.4107555961839 391.108818251911 528.2339363575916L293.3911743677135 471.81672081144245C287.88931110199604 468.6407906910251 284.49999261962455 462.7699433827619 284.49999261962455 456.41719402375224V343.5827629314539C284.49999261962455 337.23001357244425 287.88931110199604 331.3591662641811 293.3911743677135 328.1823470255889L391.108818251911 271.76513147943973Z " transform="rotate(14, 400, 400)" opacity="0.73"></path><path d="M392.3789870730666 290.08443110835344C397.09486987225296 287.36220529085284 402.90513012774704 287.36220529085284 407.6210129269334 290.08519320964615L491.3789933991027 338.4428065349169C496.09487619828906 341.1650323524175 499.0000063260361 346.19718718807167 499.0000063260361 351.64240092436563V448.35762757490704C499.0000063260361 453.802841311201 496.09487619828906 458.83499614685513 491.3789933991027 461.5579840656485L407.6210129269334 509.9155973909192C402.90513012774704 512.6378232084198 397.09486987225296 512.6378232084198 392.3789870730666 509.9148352896265L308.6210066008973 461.5572219643558C303.90512380171094 458.83499614685513 300.9999936739639 453.802841311201 300.9999936739639 448.35762757490704V351.64240092436563C300.9999936739639 346.19718718807167 303.90512380171094 341.1650323524175 308.6210066008973 338.4420444336242L392.3789870730666 290.08443110835344Z " transform="rotate(12, 400, 400)" opacity="0.77"></path><path d="M393.64915589422213 308.4036773315055C397.57905822687746 306.1351558169216 402.42094177312254 306.1351558169216 406.35084410577787 308.4043124159161L476.1491611659189 348.7023235203083C480.0790634985742 350.9708450348922 482.50000527169675 355.1643073979373 482.50000527169675 359.7019855115156V440.2980077203001C482.50000527169675 444.8356858338784 480.0790634985742 449.02914819692353 476.1491611659189 451.298304795918L406.35084410577787 491.5963159003103C402.42094177312254 493.8648374148941 397.57905822687746 493.8648374148941 393.64915589422213 491.5956808158997L323.8508388340811 451.2976697115074C319.9209365014258 449.02914819692353 317.49999472830325 444.8356858338784 317.49999472830325 440.2980077203001V359.7019855115156C317.49999472830325 355.1643073979373 319.9209365014258 350.9708450348922 323.8508388340811 348.7016884358978L393.64915589422213 308.4036773315055Z " transform="rotate(10, 400, 400)" opacity="0.82"></path><path d="M394.9193247153777 326.72294644284113C398.06324658150197 324.90812923117403 401.93675341849803 324.90812923117403 405.0806752846223 326.7234545103696L460.91932893273514 358.9618633938834C464.06325079885937 360.7766806055505 466.0000042173574 364.13145049598654 466.0000042173574 367.7615929868492V432.23841075387685C466.0000042173574 435.8685532447395 464.06325079885937 439.2233231351756 460.91932893273514 441.0386484143711L405.0806752846223 473.27705729788494C401.93675341849803 475.091874509552 398.06324658150197 475.091874509552 394.9193247153777 473.2765492303565L339.08067106726486 441.0381403468427C335.93674920114063 439.2233231351756 333.9999957826426 435.8685532447395 333.9999957826426 432.23841075387685V367.7615929868492C333.9999957826426 364.13145049598654 335.93674920114063 360.7766806055505 339.08067106726486 358.9613553263549L394.9193247153777 326.72294644284113Z " transform="rotate(8, 400, 400)" opacity="0.86"></path><path d="M396.1894935365333 345.0422155541767C398.5474349361265 343.68110264542645 401.4525650638735 343.68110264542645 403.8105064634667 345.0425966048231L445.68949669955134 369.2214032674584C448.04743809914453 370.58251617620874 449.50000316301805 373.09859359403583 449.50000316301805 375.8212004621828V424.1788137874535C449.50000316301805 426.90142065560053 448.04743809914453 429.41749807342757 445.68949669955134 430.77899203282425L403.8105064634667 454.9577986954596C401.4525650638735 456.3189116042099 398.5474349361265 456.3189116042099 396.1894935365333 454.9574176448133L354.31050330044866 430.7786109821779C351.95256190085547 429.41749807342757 350.49999683698195 426.90142065560053 350.49999683698195 424.1788137874535V375.8212004621828C350.49999683698195 373.09859359403583 351.95256190085547 370.58251617620874 354.31050330044866 369.2210222168121L396.1894935365333 345.0422155541767Z " transform="rotate(6, 400, 400)" opacity="0.91"></path><path d="M397.45966235768884 363.3614694067233C399.031623290751 362.45406080088975 400.968376709249 362.45406080088975 402.54033764231116 363.3617234404875L430.45966446636754 379.48092788224443C432.0316253994297 380.388336488078 433.0000021086787 382.065721433296 433.0000021086787 383.88079267872735V416.11920156224113C433.0000021086787 417.93427280767247 432.0316253994297 419.61165775289055 430.45966446636754 420.5193203924883L402.54033764231116 436.63852483424523C400.968376709249 437.5459334400787 399.031623290751 437.5459334400787 397.45966235768884 436.638270800481L369.54033553363246 420.51906635872405C367.9683746005703 419.61165775289055 366.9999978913213 417.93427280767247 366.9999978913213 416.11920156224113V383.88079267872735C366.9999978913213 382.065721433296 367.9683746005703 380.388336488078 369.54033553363246 379.4806738484802L397.45966235768884 363.3614694067233Z " transform="rotate(4, 400, 400)" opacity="0.95"></path><path d="M398.72983117884445 381.6807385180589C399.5158116453755 381.2270342151421 400.4841883546245 381.2270342151421 401.27016882115555 381.68086553494106L415.2298322331838 389.74046775581945C416.01581269971484 390.1941720587362 416.50000105433935 391.0328645313453 416.50000105433935 391.9404001540609V408.05960459581786C416.50000105433935 408.9671402185335 416.01581269971484 409.80583269114254 415.2298322331838 410.25966401094144L401.27016882115555 418.3192662318199C400.4841883546245 418.77297053473666 399.5158116453755 418.77297053473666 398.72983117884445 418.31913921493776L384.7701677668162 410.2595369940593C383.98418730028516 409.80583269114254 383.49999894566065 408.9671402185335 383.49999894566065 408.05960459581786V391.9404001540609C383.49999894566065 391.0328645313453 383.98418730028516 390.1941720587362 384.7701677668162 389.7403407389374L398.72983117884445 381.6807385180589Z " transform="rotate(2, 400, 400)" opacity="1.00"></path></g></svg>');
    background-repeat: no-repeat;
    background-color: var(--bs-gray-300);
    background-position: center;
    background-blend-mode: unset;
    background-size: auto;
}

.login-bg-alt-5 {
    /* background-color: #FFFFFF; */
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" viewBox="0 0 800 800"><defs><linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="gggyrate-grad"><stop stop-color="hsl(206, 75%, 49%)" stop-opacity="1" offset="0%"></stop><stop stop-color="hsl(331, 90%, 56%)" stop-opacity="1" offset="100%"></stop></linearGradient></defs><g stroke-width="5" stroke="url(%23gggyrate-grad)" fill="none"><path d="M379.1831277718038 46.43452128078283C387.7101938951073 29.200382871545884 412.28974506973645 29.200382871545884 420.81681119303994 46.43452128078283L760.5610232062634 732.9635089262324C768.1996718172309 748.4004890343714 756.9696099292712 766.4911083787034 739.7441814956453 766.4911083787034H60.255757469198386C43.030329035572606 766.4911083787034 31.800267147613 748.4004890343714 39.438915758580265 732.9635089262324L379.1831277718038 46.43452128078283Z " transform="rotate(44, 400, 400)" opacity="0.05"></path><path d="M380.12934784955917 62.50568356587152C388.26882005816697 46.05491508432718 411.7311189066768 46.05491508432718 419.8705911152846 62.50568356587152L744.1718844006342 717.828808136528C751.4633217111033 732.5641073306605 740.7437171816871 749.8324257957048 724.3012627677716 749.8324257957048H75.69867619707219C59.25622178315666 749.8324257957048 48.536617253740644 732.5641073306605 55.828054564209424 717.828808136528L380.12934784955917 62.50568356587152Z " transform="rotate(42, 400, 400)" opacity="0.10"></path><path d="M381.0755679273145 78.57684585096024C388.82744622122675 62.90944729710847 411.172492743617 62.90944729710847 418.9243710375292 78.57684585096024L727.782745595005 702.6941073468236C734.7269716049756 716.7277256269498 724.5178244341031 733.1737432127062 708.8583440398978 733.1737432127062H91.14159492494593C75.48211453074072 733.1737432127062 65.27296735986835 716.7277256269498 72.21719336983858 702.6941073468236L381.0755679273145 78.57684585096024Z " transform="rotate(40, 400, 400)" opacity="0.14"></path><path d="M382.021818522648 94.64800813604893C389.38610290186466 79.76397950988977 410.61389709813534 79.76397950988977 417.978181477352 94.64800813604893L711.3936373069539 687.5594065571189C717.990652016426 700.891343923239 708.2919622040971 716.5150606297076 693.4154558296021 716.5150606297076H106.58454417039786C91.7080377959029 716.5150606297076 82.00934798357417 700.891343923239 88.60636269304592 687.5594065571189L382.021818522648 94.64800813604893Z " transform="rotate(38, 400, 400)" opacity="0.19"></path><path d="M382.96800808282524 110.71917042113765C389.9446985473462 96.61851172267106 410.05524041749754 96.61851172267106 417.0319308820185 110.71917042113765L695.0044679837466 672.4247057674145C701.2542713927202 685.0549622195282 692.066038938935 699.856378046709 677.9725065841502 699.856378046709H122.02743238069354C107.93390002590883 699.856378046709 98.7456675721237 685.0549622195282 104.99547098109696 672.4247057674145L382.96800808282524 110.71917042113765Z " transform="rotate(36, 400, 400)" opacity="0.23"></path><path d="M383.9142281605807 126.79027167107012C390.503324710406 113.4729829002961 409.49661425443776 113.4729829002961 416.08571080426304 126.79027167107012L678.6153291781176 657.2899439425539C684.5179212865925 669.2185194806613 675.8401461913508 683.1976344285542 662.5295878562764 683.1976344285542H137.47035110856734C124.15979277349288 683.1976344285542 115.4820176782514 669.2185194806613 121.38460978672612 657.2899439425539L383.9142281605807 126.79027167107012Z " transform="rotate(34, 400, 400)" opacity="0.28"></path><path d="M384.8604787559141 142.8614339561588C391.0619813910439 130.3275151130774 408.9380186089561 130.3275151130774 415.1395212440859 142.8614339561588L662.2262208900665 642.1552431528494C667.7816016980429 653.3821377769505 659.6142839613449 666.5389518455556 647.0866996459807 666.5389518455556H152.91330035401927C140.38571603865506 666.5389518455556 132.21839830195717 653.3821377769505 137.7737791099334 642.1552431528494L384.8604787559141 142.8614339561588Z " transform="rotate(32, 400, 400)" opacity="0.32"></path><path d="M385.8066988336695 158.9326115000366C391.6206075541036 147.18206258464775 408.3793924458964 147.18206258464775 414.19330116633046 158.9326115000366L645.8370820844373 627.020557621934C651.0452515919153 637.5457713320288 643.3883912137609 649.8802845213461 631.6437809181069 649.8802845213461H168.35621908189307C156.61160878623912 649.8802845213461 148.95474840808487 637.5457713320288 154.16291791556256 627.020557621934L385.8066988336695 158.9326115000366Z " transform="rotate(30, 400, 400)" opacity="0.37"></path><path d="M386.7529036526358 175.0037737851253C392.1792184583743 164.03659479742905 407.8207510240476 164.03659479742905 413.24706582978615 175.0037737851253L629.4479280200192 611.8858568322296C634.3088862269985 621.7093896283179 627.1624832073877 633.2216019383475 616.2008469314441 633.2216019383475H183.7991225509778C172.8374862750341 633.2216019383475 165.69108325542345 621.7093896283179 170.55204146240266 611.8858568322296L386.7529036526358 175.0037737851253Z " transform="rotate(28, 400, 400)" opacity="0.41"></path><path d="M387.69913898918026 191.074936070214C392.73785988022314 180.89112701021037 407.26214011977686 180.89112701021037 412.30086101081974 191.074936070214L613.0588044731791 596.751156042525C617.5725513796599 605.8730079246072 610.9366057185928 616.5629193553489 600.7579434623593 616.5629193553489H199.24205653764068C189.06339428140723 616.5629193553489 182.42744862034021 605.8730079246072 186.94119552682088 596.751156042525L387.69913898918026 191.074936070214Z " transform="rotate(26, 400, 400)" opacity="0.46"></path><path d="M388.6453590669356 207.1460983553027C393.2964860432829 197.74565922299166 406.7035139567171 197.74565922299166 411.3546409330644 207.1460983553027L596.6696656675499 581.6164552528207C600.8362012735322 590.0366262208966 594.7107129710087 599.9042367723503 585.3150247344856 599.9042367723503H214.68497526551442C205.28928702899134 599.9042367723503 199.16379872646786 590.0366262208966 203.33033433245004 581.6164552528207L388.6453590669356 207.1460983553027Z " transform="rotate(24, 400, 400)" opacity="0.50"></path><path d="M389.59157914469097 223.2172606403914C393.8551122063427 214.60019143577296 406.1448877936573 214.60019143577296 410.40842085530903 223.2172606403914L580.2805268619207 566.4817544631162C584.0998511674045 574.2002445171856 578.4848202234247 583.2455541893517 569.8721060066117 583.2455541893517H230.12789399338823C221.5151797765754 583.2455541893517 215.90014883259556 574.2002445171856 219.7194731380792 566.4817544631162L389.59157914469097 223.2172606403914Z " transform="rotate(22, 400, 400)" opacity="0.55"></path><path d="M390.5377992224463 239.288392407902C394.41373836940244 231.45469313097612 405.58626163059756 231.45469313097612 409.4622007775537 239.288392407902L563.8913880562916 551.3470231558337C567.3635010612768 558.3638322958968 562.2589274758407 566.5868410887749 554.429187278738 566.5868410887749H245.57081272126203C237.74107252415945 566.5868410887749 232.6364989387232 558.3638322958968 236.10861194370835 551.3470231558337L390.5377992224463 239.288392407902Z " transform="rotate(20, 400, 400)" opacity="0.59"></path><path d="M391.4840193002017 255.3595546929907C394.97236453246217 248.30922534375742 405.02763546753783 248.30922534375742 408.5159806997983 255.3595546929907L547.5022492506623 536.2123223661291C550.6271509551491 542.5274505921859 546.0330347282566 549.9281585057763 538.9862685508642 549.9281585057763H261.01373144913583C253.9669652717435 549.9281585057763 249.3728490448509 542.5274505921859 252.4977507493375 536.2123223661291L391.4840193002017 255.3595546929907Z " transform="rotate(18, 400, 400)" opacity="0.64"></path><path d="M392.43023937795704 271.43071697807943C395.53099069552195 265.1637575565387 404.46900930447805 265.1637575565387 407.56976062204296 271.43071697807943L531.1131104450333 521.0776215764247C533.8908008490214 526.6910688884752 529.8071419806724 533.2694759227778 523.5433498229904 533.2694759227778H276.45665017700964C270.19285801932756 533.2694759227778 266.1091991509786 526.6910688884752 268.8868895549667 521.0776215764247L392.43023937795704 271.43071697807943Z " transform="rotate(16, 400, 400)" opacity="0.68"></path><path d="M393.3764594557124 287.50188689256265C396.0896168585817 282.01829739871454 403.9103831414183 282.01829739871454 406.6235405442876 287.50188689256265L514.7239716394041 505.9429284161148C517.1544507428938 510.85469481415896 513.5812492330883 516.6108009691737 508.10043109511656 516.6108009691737H291.89956890488344C286.4187507669116 516.6108009691737 282.84554925710626 510.85469481415896 285.27602836059583 505.9429284161148L393.3764594557124 287.50188689256265Z " transform="rotate(14, 400, 400)" opacity="0.73"></path><path d="M394.3226795334678 303.5730568070459C396.64824302164146 298.87283724089036 403.35175697835854 298.87283724089036 405.6773204665322 303.5730568070459L498.33483283377495 490.8082352558049C500.4181006367661 495.0183207398428 497.35535648550433 499.95212601556966 492.6575123672428 499.95212601556966H307.34248763275724C302.64464351449567 499.95212601556966 299.58189936323396 495.0183207398428 301.66516716622505 490.8082352558049L394.3226795334678 303.5730568070459Z " transform="rotate(12, 400, 400)" opacity="0.77"></path><path d="M395.26889961122316 319.64419620395097C397.2068691847012 315.72734656548806 402.7931308152988 315.72734656548806 404.73110038877684 319.64419620395097L481.9456940281458 475.6735115779168C483.6817505306384 479.1819161479484 481.12946373792033 483.29342054438746 477.214593639369 483.29342054438746H322.78540636063104C318.8705362620797 483.29342054438746 316.3182494693616 479.1819161479484 318.0543059718542 475.6735115779168L395.26889961122316 319.64419620395097Z " transform="rotate(10, 400, 400)" opacity="0.82"></path><path d="M396.2151196889785 335.7153584890397C397.765495347761 332.58187877826936 402.234504652239 332.58187877826936 403.7848803110215 335.7153584890397L465.55655522251664 460.53881078821234C466.9454004245107 463.3455344442376 464.9035709903362 466.6347379613889 461.7716749114952 466.6347379613889H338.2283250885048C335.0964290096638 466.6347379613889 333.0545995754893 463.3455344442376 334.44344477748336 460.53881078821234L396.2151196889785 335.7153584890397Z " transform="rotate(8, 400, 400)" opacity="0.86"></path><path d="M397.1613397667339 351.78652840352294C398.3241215108207 349.4364186204452 401.6758784891793 349.4364186204452 402.8386602332661 351.78652840352294L449.1674164168875 445.40411762790245C450.20905031838305 447.5091603699214 448.67767824275217 449.97606300778483 446.3287561836214 449.97606300778483H353.6712438163786C351.32232175724783 449.97606300778483 349.79094968161695 447.5091603699214 350.8325835831125 445.40411762790245L397.1613397667339 351.78652840352294Z " transform="rotate(6, 400, 400)" opacity="0.91"></path><path d="M398.1075598444893 367.8576906886117C398.8827476738805 366.2909508332265 401.1172523261195 366.2909508332265 401.8924401555107 367.8576906886117L432.7782776112583 430.26941683819797C433.47270021225535 431.6727786662106 432.4517854951681 433.3173804247863 430.8858374557476 433.3173804247863H369.1141625442524C367.5482145048319 433.3173804247863 366.52729978774465 431.6727786662106 367.2217223887417 430.26941683819797L398.1075598444893 367.8576906886117Z " transform="rotate(4, 400, 400)" opacity="0.95"></path><path d="M399.05377992224464 383.9288377149113C399.4413738369402 383.1454677872187 400.5586261630598 383.1454677872187 400.94622007775536 383.9288377149113L416.38913880562916 415.1347007897045C416.7363501061277 415.8363817037108 416.22589274758406 416.6586825829986 415.4429187278738 416.6586825829986H384.5570812721262C383.77410725241594 416.6586825829986 383.2636498938723 415.8363817037108 383.61086119437084 415.1347007897045L399.05377992224464 383.9288377149113Z " transform="rotate(2, 400, 400)" opacity="1.00"></path></g></svg>');
    background-repeat: space;
    background-color: var(--bs-gray-300);
    background-position: center;
    background-blend-mode: unset;
    background-size: cover;
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
}

.login-bg-alt-6 {
    /* background-color: #FFFFFF; */
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" viewBox="0 0 800 800"><defs><linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="gggyrate-grad"><stop stop-color="hsl(206, 75%, 49%)" stop-opacity="1" offset="0%"></stop><stop stop-color="hsl(331, 90%, 56%)" stop-opacity="1" offset="100%"></stop></linearGradient></defs><g stroke-width="5" stroke="url(%23gggyrate-grad)" fill="none"><path d="M400.00001525878906 121.14019775390625L641.5000306904833 260.5700933489385V539.4298845390028L400.00001525878906 678.8597801340351L158.49999982709488 539.4298845390028V260.5700933489385L400.00001525878906 121.14019775390625Z " transform="rotate(46, 400, 400)" opacity="0.05"></path><path d="M400 133.26455688476562L631.0000147607509 266.6322831061008V533.3677355487711L400 666.7354617701062L168.99998523924904 533.3677355487711V266.6322831061008L400 133.26455688476562Z " transform="rotate(44, 400, 400)" opacity="0.09"></path><path d="M400 145.38888549804688L620.5000140898078 272.694442345685V527.3055560409612L400 654.6111128885993L179.49998591019227 527.3055560409612V272.694442345685L400 145.38888549804688Z " transform="rotate(42, 400, 400)" opacity="0.14"></path><path d="M400 157.51321411132812L610.0000134188645 278.75660158526915V521.2433765331513L400 642.4867640070922L189.9999865811355 521.2433765331513V278.75660158526915L400 157.51321411132812Z " transform="rotate(40, 400, 400)" opacity="0.18"></path><path d="M400 169.6375732421875L599.5000127479212 284.8187913424315V515.1812275429195L400 630.3624456431635L200.4999872520787 515.1812275429195V284.8187913424315L400 169.6375732421875Z " transform="rotate(38, 400, 400)" opacity="0.22"></path><path d="M400 181.76190185546875L589.000012076978 290.88095058201566V509.1190480351095L400 618.2380967616565L210.99998792302193 509.1190480351095V290.88095058201566L400 181.76190185546875Z " transform="rotate(36, 400, 400)" opacity="0.27"></path><path d="M400 193.88623046875L578.5000114060349 296.9431098215999V503.0568685272997L400 606.1137478801495L221.49998859396516 503.0568685272997V296.9431098215999L400 193.88623046875Z " transform="rotate(34, 400, 400)" opacity="0.31"></path><path d="M400 206.01058959960938L568.0000107350916 303.0052995787622V496.9947195370678L400 593.9894295162208L231.99998926490838 496.9947195370678V303.0052995787622L400 206.01058959960938Z " transform="rotate(32, 400, 400)" opacity="0.35"></path><path d="M400 218.13491821289062L557.5000100641483 309.0674588183464V490.932540029258L400 581.8650806347138L242.4999899358516 490.932540029258V309.0674588183464L400 218.13491821289062Z " transform="rotate(30, 400, 400)" opacity="0.40"></path><path d="M400 230.25924682617188L547.0000093932051 315.1296180579306V484.8703605214481L400 569.7407317532068L252.99999060679488 484.8703605214481V315.1296180579306L400 230.25924682617188Z " transform="rotate(28, 400, 400)" opacity="0.44"></path><path d="M400 242.38360595703125L536.500008722262 321.19180781509294V478.8082115312163L400 557.616413389278L263.4999912777381 478.8082115312163V321.19180781509294L400 242.38360595703125Z " transform="rotate(26, 400, 400)" opacity="0.48"></path><path d="M400 254.5079345703125L526.0000080513187 327.2539670546771V472.7460320234064L400 545.492064507771L273.9999919486813 472.7460320234064V327.2539670546771L400 254.5079345703125Z " transform="rotate(24, 400, 400)" opacity="0.53"></path><path d="M400 266.63226318359375L515.5000073803755 333.3161262942613V466.68385251559647L400 533.367715626264L284.49999261962455 466.68385251559647V333.3161262942613L400 266.63226318359375Z " transform="rotate(22, 400, 400)" opacity="0.57"></path><path d="M400 278.75660705566406L505.0000067094322 339.3783007926346V460.62168826657563L400 521.2433820035461L294.9999932905678 460.62168826657563V339.3783007926346L400 278.75660705566406Z " transform="rotate(20, 400, 400)" opacity="0.61"></path><path d="M400 290.8809509277344L494.500006038489 345.44047529100783V454.55952401755474L400 509.11904838082825L305.499993961511 454.55952401755474V345.44047529100783L400 290.8809509277344Z " transform="rotate(18, 400, 400)" opacity="0.65"></path><path d="M400 303.0052947998047L484.0000053675458 351.5026497893811V448.4973597685339L400 496.9947147581104L315.9999946324542 448.4973597685339V351.5026497893811L400 303.0052947998047Z " transform="rotate(16, 400, 400)" opacity="0.70"></path><path d="M400 315.12962341308594L473.50000469660256 357.5648090289653V442.43518026072405L400 484.8703658766034L326.49999530339744 442.43518026072405V357.5648090289653L400 315.12962341308594Z " transform="rotate(14, 400, 400)" opacity="0.74"></path><path d="M400 327.25396728515625L463.00000402565934 363.62698352733855V436.3730160117032L400 472.7460322538855L336.99999597434066 436.3730160117032V363.62698352733855L400 327.25396728515625Z " transform="rotate(12, 400, 400)" opacity="0.78"></path><path d="M400 339.37831115722656L452.5000033547161 369.68915802571183V430.3108517626823L400 460.6216986311676L347.4999966452839 430.3108517626823V369.68915802571183L400 339.37831115722656Z " transform="rotate(10, 400, 400)" opacity="0.83"></path><path d="M400 351.5026397705078L442.0000026837729 375.751317265296V424.2486722548724L400 448.49734974966066L357.9999973162271 424.2486722548724V375.751317265296L400 351.5026397705078Z " transform="rotate(8, 400, 400)" opacity="0.87"></path><path d="M400 363.6269836425781L431.50000201282967 381.8134917636693V418.1865080058516L400 436.37301612694273L368.49999798717033 418.1865080058516V381.8134917636693L400 363.6269836425781Z " transform="rotate(6, 400, 400)" opacity="0.91"></path><path d="M400 375.75132751464844L421.00000134188645 387.87566626204256V412.12434375683074L400 424.24868250422486L378.99999865811355 412.12434375683074V387.87566626204256L400 375.75132751464844Z " transform="rotate(4, 400, 400)" opacity="0.96"></path><path d="M400 387.8756561279297L410.5000006709432 393.9378255016267V406.06216424902084L400 412.12433362271787L389.4999993290568 406.06216424902084V393.9378255016267L400 387.8756561279297Z " transform="rotate(2, 400, 400)" opacity="1.00"></path></g></svg>');
    background-repeat: space;
    background-color: var(--bs-gray-300);
    background-position: center;
    background-blend-mode: unset;
    background-size: cover;
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
}

.login-bg-alt-7 {
    /* background-color: #FFFFFF; */
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" viewBox="0 0 800 800" opacity="0.84"><defs><linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="gggyrate-grad"><stop stop-color="hsl(206, 75%, 49%)" stop-opacity="1" offset="0%"></stop><stop stop-color="hsl(331, 90%, 56%)" stop-opacity="1" offset="100%"></stop></linearGradient></defs><g stroke-width="4" stroke="url(%23gggyrate-grad)" fill="none"><path d="M400.0000305175781 81.88043212890625L675.5000481218503 240.9402095054337V559.0597642584885L400.0000305175781 718.1195416350159L124.50001291330591 559.0597642584885V240.9402095054337L400.0000305175781 81.88043212890625Z " transform="rotate(19, 400, 400)" opacity="0.05"></path><path d="M400.0000305175781 98.62356567382812L661.0000471953098 249.31177582001203V550.6881961123797L400.0000305175781 701.3764062585636L139.00001383984653 550.6881961123797V249.31177582001203L400.0000305175781 98.62356567382812Z " transform="rotate(18, 400, 400)" opacity="0.10"></path><path d="M400.00001525878906 115.36669921875L646.5000310099799 257.68334213459036V542.316627966271L400.00001525878906 684.6332708821113L153.49999950759815 542.316627966271V257.68334213459036L400.00001525878906 115.36669921875Z " transform="rotate(17, 400, 400)" opacity="0.16"></path><path d="M400 132.10986328125L632.0000148246504 266.05493896674676V533.9450903377403L400 667.890166023237L167.9999851753497 533.9450903377403V266.05493896674676L400 132.10986328125Z " transform="rotate(16, 400, 400)" opacity="0.21"></path><path d="M400 148.85299682617188L617.5000138981097 274.4265052813251V525.5735221916316L400 651.1470306467847L182.49998610189033 525.5735221916316V274.4265052813251L400 148.85299682617188Z " transform="rotate(15, 400, 400)" opacity="0.26"></path><path d="M400 165.59613037109375L603.000012971569 282.7980715959034V517.2019540455228L400 634.4038952703324L196.999987028431 517.2019540455228V282.7980715959034L400 165.59613037109375Z " transform="rotate(14, 400, 400)" opacity="0.31"></path><path d="M400 182.33926391601562L588.5000120450284 291.16963791048175V508.83038589941407L400 617.6607598938801L211.49998795497163 508.83038589941407V291.16963791048175L400 182.33926391601562Z " transform="rotate(13, 400, 400)" opacity="0.37"></path><path d="M400 199.0823974609375L574.0000111184877 299.5412042250601V500.4588177533053L400 600.9176245174278L225.99998888151225 500.4588177533053V299.5412042250601L400 199.0823974609375Z " transform="rotate(12, 400, 400)" opacity="0.42"></path><path d="M400 215.82553100585938L559.5000101919471 307.9127705396384V492.08724960719655L400 584.1744891409755L240.49998980805293 492.08724960719655V307.9127705396384L400 215.82553100585938Z " transform="rotate(11, 400, 400)" opacity="0.47"></path><path d="M400 232.56866455078125L545.0000092654064 316.28433685421675V483.7156814610877L400 567.4313537645232L254.99999073459355 483.7156814610877V316.28433685421675L400 232.56866455078125Z " transform="rotate(10, 400, 400)" opacity="0.53"></path><path d="M400 249.31179809570312L530.5000083388659 324.6559031687951V475.3441133149789L400 550.6882183880709L269.49999166113423 475.3441133149789V324.6559031687951L400 249.31179809570312Z " transform="rotate(9, 400, 400)" opacity="0.58"></path><path d="M400 266.054931640625L516.0000074123252 333.02746948337335V466.97254516887017L400 533.9450830116185L283.99999258767485 466.97254516887017V333.02746948337335L400 266.054931640625Z " transform="rotate(8, 400, 400)" opacity="0.63"></path><path d="M400 282.7980651855469L501.5000064857845 341.39903579795174V458.6009770227614L400 517.2019476351662L298.4999935142155 458.6009770227614V341.39903579795174L400 282.7980651855469Z " transform="rotate(7, 400, 400)" opacity="0.68"></path><path d="M400 299.54119873046875L487.00000555924385 349.77060211253V450.22940887665266L400 500.4588122587139L312.99999444075615 450.22940887665266V349.77060211253L400 299.54119873046875Z " transform="rotate(6, 400, 400)" opacity="0.74"></path><path d="M400 316.2843322753906L472.5000046327032 358.14216842710834V441.85784073054384L400 483.7156768822616L327.4999953672968 441.85784073054384V358.14216842710834L400 316.2843322753906Z " transform="rotate(5, 400, 400)" opacity="0.79"></path><path d="M400 333.0274658203125L458.0000037061626 366.5137347416867V433.4862725844351L400 466.97254150580926L341.9999962938374 433.4862725844351V366.5137347416867L400 333.0274658203125Z " transform="rotate(4, 400, 400)" opacity="0.84"></path><path d="M400 349.7705993652344L443.5000027796219 374.885301056265V425.1147044383263L400 450.22940612935696L356.4999972203781 425.1147044383263V374.885301056265L400 349.7705993652344Z " transform="rotate(3, 400, 400)" opacity="0.89"></path><path d="M400 366.51373291015625L429.0000018530813 383.25686737084334V416.7431362922175L400 433.4862707529046L370.9999981469187 416.7431362922175V383.25686737084334L400 366.51373291015625Z " transform="rotate(2, 400, 400)" opacity="0.95"></path><path d="M400 383.2568664550781L414.5000009265406 391.62843368542167V408.37156814610876L400 416.7431353764523L385.4999990734594 408.37156814610876V391.62843368542167L400 383.2568664550781Z " transform="rotate(1, 400, 400)" opacity="1.00"></path></g></svg>');
    /* background-attachment: fixed | scroll; */
    /* background-size: auto | cover | contain | 500px 250px; */
    /* background-position: center | right 30px bottom 15px; */
    /* background-repeat: no-repeat | repeat | repeat-x; */
    /* background-origin: border-box | padding-box | content-box; */
    /* background-clip: border-box | padding-box | content-box; */
    /* background-blend-mode: multiply | screen | overlay; */
    background-repeat: space;
    background-color: var(--bs-gray-300);
    background-position: center;
    background-blend-mode: unset;
    background-size: cover;
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
}

.login-bg-alt-animate {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1920' height='1080' preserveAspectRatio='none' viewBox='0 0 1920 1080'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1879%26quot%3b)' fill='none'%3e%3crect width='1920' height='1080' x='0' y='0' fill='url(%26quot%3b%23SvgjsLinearGradient1880%26quot%3b)'%3e%3c/rect%3e%3cpath d='M792.875%2c695.429C876.379%2c701.391%2c961.854%2c664.77%2c1003.103%2c591.92C1043.863%2c519.933%2c1022.76%2c433.341%2c982.05%2c361.325C940.537%2c287.889%2c877.218%2c218.499%2c792.875%2c220.027C710.29%2c221.523%2c650.648%2c293.36%2c615.209%2c367.97C584.902%2c431.774%2c595.231%2c503.12%2c628.917%2c565.206C664.59%2c630.956%2c718.261%2c690.102%2c792.875%2c695.429' fill='rgba(157%2c 157%2c 157%2c 0.13)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M0.755%2c402.115C33.509%2c404.447%2c68.485%2c397.949%2c87.239%2c370.994C108.591%2c340.306%2c114.106%2c298.785%2c95.014%2c266.643C76.242%2c235.039%2c37.48%2c223.804%2c0.755%2c225.394C-33.038%2c226.857%2c-65.192%2c243.998%2c-80.351%2c274.236C-94.259%2c301.98%2c-83.361%2c333.822%2c-66.739%2c360.03C-51.519%2c384.027%2c-27.59%2c400.097%2c0.755%2c402.115' fill='rgba(157%2c 157%2c 157%2c 0.13)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M1447.457%2c554.891C1495.029%2c556.677%2c1539.895%2c530.316%2c1563.145%2c488.775C1585.893%2c448.131%2c1581.428%2c398.406%2c1557.354%2c358.533C1534.111%2c320.037%2c1492.421%2c296.525%2c1447.457%2c297.167C1403.573%2c297.793%2c1364.12%2c323.199%2c1342.863%2c361.595C1322.26%2c398.81%2c1325.65%2c443.21%2c1345.893%2c480.621C1367.286%2c520.156%2c1402.537%2c553.205%2c1447.457%2c554.891' fill='rgba(157%2c 157%2c 157%2c 0.13)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M1021.9%2c489.789C1106.832%2c489.042%2c1195.776%2c460.112%2c1235.249%2c384.907C1272.806%2c313.353%2c1233.897%2c232.646%2c1193.649%2c162.57C1153.176%2c92.102%2c1103.042%2c17.887%2c1021.9%2c13.439C934.78%2c8.663%2c858.232%2c66.488%2c814.113%2c141.763C769.446%2c217.974%2c756.664%2c312.873%2c801.948%2c388.719C846.28%2c462.972%2c935.423%2c490.55%2c1021.9%2c489.789' fill='rgba(157%2c 157%2c 157%2c 0.13)' class='triangle-float2'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1879'%3e%3crect width='1920' height='1080' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='10.94%25' y1='119.44%25' x2='89.06%25' y2='-19.44%25' gradientUnits='userSpaceOnUse' id='SvgjsLinearGradient1880'%3e%3cstop stop-color='rgba(227%2c 227%2c 227%2c 1)' offset='0'%3e%3c/stop%3e%3cstop stop-color='rgba(204%2c 208%2c 255%2c 1)' offset='1'%3e%3c/stop%3e%3c/linearGradient%3e%3cstyle%3e %40keyframes float1 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-10px%2c 0)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float1 %7b animation: float1 5s infinite%3b %7d %40keyframes float2 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-5px%2c -5px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float2 %7b animation: float2 4s infinite%3b %7d %40keyframes float3 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(0%2c -10px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float3 %7b animation: float3 6s infinite%3b %7d %3c/style%3e%3c/defs%3e%3c/svg%3e");
}

.login-bg-alt-animate-2 {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
}

.login-bg-alt-animate-3 {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1920' height='1080' preserveAspectRatio='none' viewBox='0 0 1920 1080'%3e%3cg mask='url(%26quot%3b%23SvgjsMask2427%26quot%3b)' fill='none'%3e%3crect width='1920' height='1080' x='0' y='0' fill='url(%26quot%3b%23SvgjsLinearGradient2428%26quot%3b)'%3e%3c/rect%3e%3cpath d='M797.028%2c831.061C840.668%2c830.866%2c879.361%2c804.593%2c900.76%2c766.56C921.736%2c729.278%2c920.336%2c684.822%2c900.685%2c646.824C879.111%2c605.107%2c843.922%2c568.557%2c797.028%2c565.978C746.073%2c563.176%2c695.187%2c588.997%2c671.544%2c634.222C649.234%2c676.896%2c665.792%2c726.89%2c691.677%2c767.495C715.307%2c804.562%2c753.069%2c831.258%2c797.028%2c831.061' fill='rgba(229%2c 229%2c 229%2c 0.1)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M1750.621%2c864.792C1806.464%2c866.028%2c1867.1%2c856.468%2c1896.714%2c809.108C1927.724%2c759.515%2c1917.106%2c696.179%2c1887.654%2c645.645C1858.434%2c595.51%2c1808.643%2c557.555%2c1750.621%2c558.442C1693.887%2c559.309%2c1648.135%2c600.083%2c1620.656%2c649.726C1594.142%2c697.626%2c1587.001%2c756.02%2c1615.317%2c802.878C1642.811%2c848.376%2c1697.474%2c863.615%2c1750.621%2c864.792' fill='rgba(229%2c 229%2c 229%2c 0.1)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M15.542%2c448.596C44.531%2c448.992%2c70.786%2c432.349%2c85.406%2c407.313C100.156%2c382.053%2c100.814%2c351.481%2c87.445%2c325.464C72.751%2c296.868%2c47.635%2c273.272%2c15.542%2c271.354C-19.792%2c269.242%2c-57.218%2c284.176%2c-72.97%2c315.875C-87.629%2c345.376%2c-69.369%2c378.042%2c-51.092%2c405.448C-35.356%2c429.043%2c-12.816%2c448.209%2c15.542%2c448.596' fill='rgba(229%2c 229%2c 229%2c 0.1)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M232.033%2c631.679C300.303%2c635.444%2c375.445%2c627.461%2c413.404%2c570.592C454.794%2c508.584%2c453.633%2c423.828%2c412.093%2c361.92C374.209%2c305.459%2c299.977%2c297.705%2c232.033%2c300.288C169.734%2c302.657%2c106.066%2c321.168%2c74.223%2c374.766C41.788%2c429.361%2c49.054%2c498.221%2c82.291%2c552.331C113.98%2c603.92%2c171.581%2c628.345%2c232.033%2c631.679' fill='rgba(229%2c 229%2c 229%2c 0.1)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M1317.691%2c1048.055C1351.397%2c1049.211%2c1384.692%2c1033.719%2c1401.402%2c1004.424C1417.979%2c975.362%2c1411.731%2c940.414%2c1395.902%2c910.938C1378.991%2c879.447%2c1353.404%2c850.048%2c1317.691%2c848.541C1279.825%2c846.943%2c1243.931%2c869.837%2c1227.146%2c903.817C1211.868%2c934.746%2c1225.027%2c969.787%2c1243.368%2c999.004C1260.283%2c1025.95%2c1285.895%2c1046.964%2c1317.691%2c1048.055' fill='rgba(229%2c 229%2c 229%2c 0.1)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M1167.528%2c1284.09C1239.207%2c1284.903%2c1318%2c1281.497%2c1358.424%2c1222.298C1403.188%2c1156.745%2c1404.809%2c1066.613%2c1361.431%2c1000.135C1321.157%2c938.415%2c1241.162%2c926.675%2c1167.528%2c929.747C1100.318%2c932.551%2c1035.887%2c958.479%2c999.762%2c1015.224C960.73%2c1076.535%2c945.514%2c1156.388%2c983.99%2c1218.05C1020.881%2c1277.172%2c1097.845%2c1283.299%2c1167.528%2c1284.09' fill='rgba(229%2c 229%2c 229%2c 0.1)' class='triangle-float3'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask2427'%3e%3crect width='1920' height='1080' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='10.94%25' y1='119.44%25' x2='89.06%25' y2='-19.44%25' gradientUnits='userSpaceOnUse' id='SvgjsLinearGradient2428'%3e%3cstop stop-color='rgba(128%2c 0%2c 177%2c 1)' offset='0'%3e%3c/stop%3e%3cstop stop-color='rgba(38%2c 47%2c 144%2c 1)' offset='1'%3e%3c/stop%3e%3c/linearGradient%3e%3cstyle%3e %40keyframes float1 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-10px%2c 0)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float1 %7b animation: float1 5s infinite%3b %7d %40keyframes float2 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-5px%2c -5px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float2 %7b animation: float2 4s infinite%3b %7d %40keyframes float3 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(0%2c -10px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float3 %7b animation: float3 6s infinite%3b %7d %3c/style%3e%3c/defs%3e%3c/svg%3e");
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.login-wrapper {
    display: flex;
    justify-content: center;
}



.login-container {
    background: rgb(255 255 255 / 0%);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 40px );
    -webkit-backdrop-filter: blur( 40px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.login-logo {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

    .login-logo img {
        width: 250px;
    }

.login-banner {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-left: 1px solid var(--bc-color-primary-light);
}

    .login-banner img {
        width: fit-content;
        margin-bottom: 8px;
    }

.login-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}


@media (max-width:992px) {
    .login {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
    }

    .login-container {
        padding: 0;
        margin-right: 0;
        margin-left: 0;
    }

    .login-banner {
        display: none;
    }

    .login-footer {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {

    .login-container {
        box-shadow: none;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
    overflow: auto;
    background-color: rgb(0 0 0 / 55%);
}

/* Modal Content */
.modal-content {
    background-color: var(--bs-gray-100);
    margin: auto;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-3);
    animation-name: fadeIn;
    -webkit-animation-duration: .25s;
    animation-duration: .25s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* Modal Head */

.modal-head {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    max-height: 5vh;
    box-shadow: var(--shadow-1);
    background: linear-gradient(270deg, #662483 0%, #ab2c69 100%);
    color: var(--bc-color-primary-light);
    align-items: center;
}

    .modal-head h1 {
        margin: 7px 14px;
        padding: 0;
        font-size: var(--bc-font-xlarge);
    }

/* Modal Text aRea */
.modal-text {
    padding: 8px 16px 16px 16px;
}

    .modal-text br {
        content: "";
        margin: 8px;
        display: block;
    }

/* The Close Button */
.modal-close {
    color: #aaaaaa;
    position: relative;
    float: right;
    padding: 0 8px;
    font-size: 30px;
}

    .modal-close:hover,
    .modal-close:focus {
        color: var(--bs-light);
        text-decoration: none;
        cursor: pointer;
    }

@media (max-width:992px) {
    .modal-content {
        margin: auto 12px;
    }
}
/* Kurum Secim CSS */

#divKurumlar {
    display: flex;
    flex-wrap: wrap;
    margin: 16px 0;
    min-height: 15rem;
    max-height: 20rem;
    overflow-y: auto;
}

.kurum {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% / 4.2);
    margin: 5px 5px 0 0;
    border: 1px solid #e7eaf3;
    border-color: #d2d2d2;
    background-color: #f8fafd;
    padding: .7rem;
    border-radius: 15px;
    height: 11rem;
    cursor: pointer;
}

    .kurum p {
        font-size: var(--bc-font-small);
    }

        .kurum p:last-child {
            font-size: var(--bc-font-small);
        }

.kurumdiv {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

    .kurumdiv p:first-child {
        margin-bottom: 0;
        line-height: 1rem;
        font-weight: 600;
    }

    .kurum img {
        border-radius: 4px;
        width: 48px;
        height: 48px;
    }

.kurum-hover {
    border: 1px solid #3f729b;
    background-color: #e0f1ff;
    color: #002e54;
}

.kurum input[type="radio"] {
    opacity: 0;
    width: 0;
    height: 0;
    display: none;
}

.kurum label {
    margin: 0;
    margin-left: 7px;
}

.omryonlenme {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24%;
    margin: 5px;
    border: 1px solid #e7eaf3;
    border-color: #F36896;
    background-color: #FDE5ED;
    padding: .7rem;
    border-radius: 15px;
    height: 11rem;
    cursor: pointer;
}

    .omryonlenme p {
        font-size: .8rem;
        margin-bottom: .8rem;
    }

        .omryonlenme p:last-child {
            font-size: .7rem;
        }

.omryonlenme-hover {
    border: 1px solid #3f729b;
    background-color: #e0f1ff;
    color: #002e54;
}

.omryonlenme input[type="radio"] {
    opacity: 0;
    width: 0;
    height: 0;
    display: none;
}

@media (max-width:992px) {

    #divKurumlar {
        min-height: 20rem;
        max-height: unset;
    }

    .kurum {
        width: 100%;
    }
}

.language-select {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    align-self: center;
}

    .language-select ul li a img {
        width: 22px;
        height: 22px;
        margin-right: 5px;
    }

    .language-select ul {
        list-style: none;
        margin: 0;
        padding-left: 0;
    }

    .language-select li {
        /*background: var(--bc-color-primary-light);
        border: 1px solid var(--bs-gray-500);
        border-radius: 40px;
        position: relative;*/
        display: inline-flex;
        transition-duration: .25s;
        padding: 0;
    }

        .language-select li:first-child {
            border-right: 1px solid var(--bs-border-color-translucent);
        }

        .language-select li a {
            display: flex;
            color: var(--bs-gray-700);
            font-size: var(--bc-font-small);
            padding: 6px 12px;
            align-items: center;
        }

        .language-select li:hover,
        .language-select li:focus-within {
            cursor: pointer;
        }

            .language-select li:focus-within a {
                outline: none;
            }

    .language-select ul li ul {
        visibility: hidden;
        opacity: 0;
        min-width: 100px;
        position: absolute;
        transition: all 1s ease;
        margin-top: -40px;
        left: 0;
        display: none;
        border-radius: 40px;
    }


/* Page Loader */


/* Center the loader */
#loader .loader-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1984;
    width: 90px;
    height: 90px;
    margin: -25px 0 0 -25px;
    border: 10px solid var(--bc-color-primary-light);
    border-radius: 50%;
    border-top: 10px solid var(--bc-color-primary);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader {
    background: #1f1f1fa4;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2000;
}

    #loader:before {
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

