        @import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
        * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }
        
        html {
            background-image: url('/assets/svg/background.svg');
            background-repeat: no-repeat;
            background-size: cover;
            position: fixed;
            width: 100%;
        }
        
        body {
            height: 100vh;
            display: flex;
            align-items: end;
            width: 100vw;
            justify-content: center;
        }
        
        .container {
            width: 500px;
            min-height: 700px;
            height: 100vh;
            overflow-y: scroll;
        }
        
        .container::-webkit-scrollbar {
            display: none;
        }
        
        .container header {
            font-size: 28px;
            font-weight: bold;
            font-family: "Noto Sans";
            color: white;
            padding: 2rem 0;
        }
        
        .container main {
            padding: 5px;
            background-color: white;
            border: 2px solid rgb(206, 206, 206);
            border-radius: 10px;
        }
        
        .container main>footer {
            padding: 1rem;
            display: flex;
            justify-content: center;
            font-family: Poppins;
            background-color: rgb(236, 236, 236);
            border-radius: 5px;
            font-size: 15px;
        }
        
        .container main>footer a,
        .formFlexBox a {
            color: #0026ff;
            font-family: "Poppins";
        }
        
        .container main>footer a:hover,
        .formFlexBox a:hover {
            color: black;
        }
        
        .container main>footer>span {
            display: flex;
            gap: 5px;
            text-align: center;
            color: black;
            justify-content: center;
        }
        
        form {
            padding: 2rem 3rem;
        }
        
        form h1 {
            font-family: "Noto Sans";
            font-weight: 400;
            padding-bottom: 2rem;
        }
        
        form label {
            font-weight: 300;
            font-family: "Noto Sans";
            display: block;
        }
        
        form input:not([type="checkbox"]) {
            border: 2px solid transparent;
            padding: 12px 16px;
            width: 100%;
            color: rgb(63, 63, 63);
            font-size: 15px;
            border-radius: 5px;
            outline: 1px solid rgb(211, 211, 211);
        }
        
        .container input.warning {
            border: 2px solid #ff224e;
        }
        
        .container p.errorField {
            padding-top: 10px;
            font-weight: 300;
            font-size: 13px;
            display: flex;
            gap: 5px;
            color: #b10023;
            margin-bottom: 1.5rem;
        }
        
        .container p.errorField svg {
            color: #b10023;
        }
        
        form input:focus {
            outline: 1px solid #0026ff;
        }
        
        .mb {
            margin-bottom: 2rem !important;
        }
        
        .backBttn {
            padding: 6px 12px;
            border: 1px solid;
            color: #0026ff;
            text-decoration: none;
            margin-bottom: 1rem;
            font-family: Roboto;
            display: block;
            cursor: pointer;
            width: max-content;
            border-radius: 3px;
        }
        
        .backBttn:hover {
            color: #000000;
        }
        
        .optionS {
            display: none;
        }
        
        .formFlexBox {
            display: flex;
            align-items: center;
            padding-bottom: 12px;
            justify-content: space-between;
        }
        
        .formFlexBox.inherit {
            justify-content: start;
            gap: 10px;
            font-weight: 300;
            font-size: 14px;
            align-items: center;
        }
        
        .formFlexBox.inherit label {
            font-weight: 400;
            cursor: pointer;
        }
        
        .formFlexBox a {
            font-size: 13px;
            text-decoration: none;
            font-weight: 500;
        }
        
        .submitBttnLegal {
            width: max-content;
            position: absolute;
            z-index: 1000;
        }
        
        .innerBodyLegal .submitBttnLegal {
            position: fixed;
            bottom: 14%;
            right: 18%;
            width: max-content;
        }
        
        form button[type="submit"],
        .submitBttnLegal {
            width: 100%;
            padding: 12px 24px;
            margin: 1rem 0;
            background-color: #0026ff;
            height: 50px;
            color: white;
            border-radius: 10px;
            border: none;
            outline: transparent;
            cursor: pointer;
            font-family: Poppins;
            font-size: 16px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .anim {
            animation: spin 1.5s linear infinite;
        }
        
        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            50% {
                transform: rotate(180deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        form section:not(.mailValidator) {
            margin-top: 2rem;
            border-top: 1px solid rgb(209, 209, 209);
            padding: 2rem 0;
            display: grid;
            position: relative;
            justify-content: center;
            padding-bottom: 0;
        }
        
        form select {
            padding: 12px 60px 12px 10px;
            outline: #0026ff;
            border-radius: 5px;
        }
        
        form select:active {
            outline: 1px solid #0026ff;
        }
        
        form section:not(.mailValidator)::after {
            content: "Social login";
            font-family: Poppins;
            padding: 6px 12px;
            background-color: white;
            position: absolute;
            left: 50%;
            color: rgb(139, 139, 139);
            transform: translate(-50%, -50%);
        }
        
        section.warning {
            margin-top: 1rem;
            padding: 1rem;
            border: 1px solid rgb(194, 194, 194);
            border-radius: 5px;
            color: rgb(255, 255, 255);
            font-family: "Noto sans";
            font-size: 15px;
            letter-spacing: 0.2px;
            line-height: 1.5;
            margin-bottom: 2rem;
            background-color: rgba(255, 255, 255, 0.09);
        }
        
        section.warning a {
            color: #ffffff;
            text-decoration: none;
            border-bottom: 2px dashed #dbe0ff;
        }
        
        .container footer a {
            text-decoration: none;
            font-family: "Poppins";
            font-weight: 400;
            color: white;
            font-size: 15px;
        }
        
        .container footer a:hover {
            color: rgb(201, 201, 201);
        }
        
        .prefix div {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            align-items: center;
        }
        
        .prefixOption {
            padding: 12px 18px;
            background-color: #f3f5ff;
            border-radius: 5px;
            display: flex;
            position: relative;
            gap: 10px;
            align-items: center;
            width: max-content;
            border: 1px solid #c9d2ff;
        }
        
        .suggestionsBoard {
            padding-bottom: 1rem;
            margin-top: -10px;
            margin-left: 10px;
            list-style-type: none;
            margin-bottom: 10px;
        }
        
        .suggestionsBoard li {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 2px 0;
            color: grey;
            font-weight: 500;
            position: relative;
        }
        
        input.showPassword~.eyeOfSight {
            display: none;
        }
        
        .eyeOfSight {
            margin-top: -34px;
            float: right;
            padding-right: 10px;
            display: block;
            position: relative;
            color: #9b9b9b;
            transition: 500ms ease-in-out color;
        }
        
        input[type="password"]::-webkit-credentials-icon {
            display: none !important;
        }
        
        input[type="password"]::-moz-placeholder {
            display: none !important;
        }
        
        input[type="password"]::-ms-reveal,
        input[type="password"]::-ms-clear {
            display: none;
        }
        
        .IconMakerContainer {
            display: flex;
            gap: 1rem;
        }
        
        .picture:not(.inherit) {
            border: 1px solid rgb(211, 211, 211);
            border-radius: 5px;
            margin-bottom: 2rem;
        }
        
        .body>article.icon {
            gap: 1rem;
            padding-bottom: 1rem;
        }
        
        .icon>div>.settings {
            display: flex;
            gap: 0.8rem;
            align-items: end;
        }
        
        .searchBar {
            display: flex;
            gap: 1rem;
            justify-content: center;
            padding-bottom: 1rem;
        }
        
        .container .formContainer>div {
            display: none;
        }
        
        body>.container>main>form>.formContainer>.picture>.body>article.unsplash {
            justify-content: center;
        }
        
        .imagesGrid.Unsplash {
            display: grid;
            max-height: 350px;
            overflow-y: scroll;
            gap: 10px;
            grid-template-columns: repeat(2, 1fr);
            scroll-behavior: smooth;
            will-change: scroll-position;
        }
        
        form .UnsplashContainer>p {
            margin-bottom: 0;
            font-size: 13px;
            font-weight: 300;
            text-align: center;
            font-family: Poppins;
            color: #818181;
        }
        
        form .UnsplashContainer a {
            margin-bottom: 0;
            color: #000000;
            transition: 500ms ease;
        }
        
        .previewOfSelection {
            width: 50px;
            height: 50px;
            border-radius: 5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: "Roboto";
            font-weight: 700;
            font-size: 26px;
        }
        
        main>form>.formContainer>.picture p.previewField {
            margin-bottom: 0;
            margin-left: 10px;
        }
        
        form .UnsplashContainer a:hover {
            color: #0026ff;
        }
        
        .body>* {
            transition: opacity 0.4s ease;
            opacity: 0;
            animation: fadeIn 0.5s forwards;
        }
        
        .gallary_item {
            width: 100%;
            cursor: pointer;
            position: relative;
            aspect-ratio: 1;
            border-radius: 5px;
            transition: opacity 0.3s ease;
            opacity: 0;
            animation: fadeIn 0.5s forwards;
        }
        
        .gallery_row {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
            margin-bottom: 1rem;
            animation: fadeIn;
        }
        
        article.gallery {
            max-height: 350px;
            overflow-y: scroll;
        }
        
        div.email:not(.inherit) {
            border: 1px solid rgb(211, 211, 211);
            margin-bottom: 1rem;
        }
        
        main>form>.email.inherit {
            display: flex;
        }
        
        .email_body {
            padding: 1rem 10px 0px 10px;
        }
        
        .noFlex {
            display: block;
        }
        
        .headerLegalContainer {
            padding: 1rem 2rem;
            border-bottom: 1px solid rgb(201, 201, 201);
            background-color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .innerBodyLegal a {
            color: #516bff;
            transition: 300ms ease-in-out;
        }
        
        .innerBodyLegal a:hover {
            color: #0026ff;
        }
        
        .headerLegalContainer .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .headerLegalContainer .logo p {
            font-weight: 500;
            font-family: Poppins;
        }
        
        .bodyLegalContainer {
            display: grid;
            grid-template-columns: 30% 70%;
            height: 100%;
        }
        
        .bodyLegalContainer aside {
            background-color: #eeeeee;
            padding: 2rem;
            height: 700px;
        }
        
        .bodyLegalContainer aside ul {
            list-style-type: none;
        }
        
        .bodyLegalContainer aside ul li {
            padding: 10px 0;
        }
        
        .bodyLegalContainer aside ul a {
            color: black;
            font-family: Poppins;
            font-size: 16px;
            cursor: pointer;
            font-weight: 500;
            word-spacing: 10px;
        }
        
        .bodyLegalContainer a {
            text-decoration: none;
        }
        
        .contentBoxLegalContainer {
            background-color: white;
        }
        
        main form p a {
            color: black;
            font-weight: 300;
            text-decoration: none;
        }
        
        .loadingOnboarding {
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .innerBodyLegal p:first-of-type {
            margin-top: -0.7rem;
        }
        
        .innerBodyLegal ol li {
            margin-bottom: 0.5rem;
            font-family: "Noto Sans";
            font-weight: 400;
        }
        
        .innerBodyLegal>b {
            font-family: Poppins;
            padding-top: 10px;
            color: #516bff;
            display: block;
        }
        
        .innerBodyLegal .topSide {
            position: sticky;
            padding-bottom: 1rem;
            top: 0;
            background-image: linear-gradient(to bottom, white 70%, transparent);
        }
        
        .innerBodyLegal {
            margin: 2rem;
            max-height: 600px;
            overflow-y: scroll;
            position: relative;
        }
        
        .innerBodyLegal::-webkit-scrollbar {
            width: 7px;
        }
        
        .innerBodyLegal::-webkit-scrollbar-track {
            background-color: #ececec;
        }
        
        .innerBodyLegal::-webkit-scrollbar-thumb {
            background-color: #0026ff;
            width: 5px;
        }
        
        a.downloadBttn {
            display: flex;
            align-items: center;
            gap: 5px;
            font-family: "Noto Sans";
            font-size: 15px;
            border: 1px solid #0026ff;
            padding: 6px 12px;
            width: max-content;
            border-radius: 5px;
            position: absolute;
            bottom: 1rem;
            transition: 500ms ease-in-out;
        }
        
        .bodyLegalContainer aside ul a.currentActive {
            color: #0026ff;
        }
        
        .innerBodyLegal h1 {
            font-family: "Poppins";
            font-size: 28px;
        }
        
        a.downloadBttn:hover {
            background-color: #0026ff;
            color: white;
        }
        
        span.modified>p {
            font-size: 12px;
            font-family: "Noto Sans";
            font-weight: 300;
            display: grid;
            text-align: right;
        }
        
        div.innerBodyLegal p {
            font-weight: 300;
            line-height: 1.5;
            max-width: 80%;
        }
        
        .innerBodyLegal h2 {
            font-family: "Poppins";
            font-size: 20px;
            word-spacing: 10px;
            color: #0026ff;
            padding-top: 2rem;
        }
        
        span.modified>p>b {
            font-size: 14px;
            font-weight: 500;
        }
        
        .headerLegalContainer img {
            max-width: 50px;
        }
        
        div.headerLegalContainer p {
            margin-bottom: 0;
        }
        
        .headerLegalContainer header {
            color: black;
            padding: 0;
        }
        
        .LegalMainContainer {
            width: 70%;
            height: 80%;
            overflow-y: hidden;
            min-height: 700px;
            position: relative;
        }
        
        .legalContainer {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .picture>.body>article.gallery>div p {
            margin-bottom: 10px;
        }
        
        button.confirm.SendEmailForVerify {
            font-size: 15px;
            display: flex;
            align-items: center;
        }
        
        .innerContainer .uploadLabel {
            padding: 12px;
            display: grid;
            row-gap: 3px;
            width: 80%;
            left: 10%;
            position: relative;
            border: 1px solid #c5c5c5;
            border-radius: 5px;
            font-family: "Noto Sans";
            cursor: pointer;
            margin-top: 5px;
            text-align: center;
            transition: 500ms ease border-color;
        }
        
        .galleryGrid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            padding-bottom: 1rem;
        }
        
        .subTitleHeader {
            font-family: Poppins;
            font-weight: 300;
            font-size: 15px;
            color: #818181;
        }
        
        .selectedImage {
            border: 2px solid #0026ff;
            border-radius: 5px;
        }
        
        footer.profilFooter p.ErrorField {
            color: #b10023;
            border-left: 2px solid #ff0033;
            text-align: left;
            gap: 5px;
            font-size: 15px;
            display: flex;
            align-items: center;
            margin-bottom: 0;
            width: 100%;
            padding-left: 5px;
            font-weight: 400;
            font-family: Poppins;
        }
        
        .uploadLabel:hover {
            border: 1px solid #0026ff;
        }
        
        .innerContainer {
            display: flex;
            align-items: center;
        }
        
        .labelController {
            width: 100%;
        }
        
        .innerContainer>div>p {
            margin-bottom: 0;
            font-weight: 300;
            font-family: "Noto Sans";
            margin-top: 5px;
            text-align: center;
        }
        
        #imagePreview {
            max-width: 100px;
            border: 1px solid #9b9b9b;
            border-radius: 5px;
            object-fit: cover;
        }
        
        .picture>footer.profilFooter {
            justify-content: right;
            padding-right: 10px;
            gap: 0;
            padding-top: 10px;
            padding-bottom: 10px;
            border-top: 1px solid rgb(211, 211, 211);
        }
        
        button.confirm {
            cursor: pointer;
            padding: 6px 12px;
            background-color: #0026ff;
            color: white;
            position: relative;
            margin: 0 10px;
            margin-top: 10px;
            outline: transparent;
            border: none;
            border-radius: 5px;
            float: right;
            font-family: Poppins;
            transition: 500ms ease;
            font-size: 16px;
        }
        
        .slideContainer div:not(:first-of-type) {
            display: none;
        }
        
        .page2,
        .page3 {
            display: none;
        }
        
        .descriptionVerify {
            padding-top: 1rem;
        }
        
        .EmailVerify.ErrorField {
            margin-top: -1.5rem;
            text-align: center;
            color: #b10023;
            font-weight: 300;
        }
        
        .verifyCodeBlock {
            display: grid;
            margin: 1rem;
            padding: 1rem 0;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
        }
        
        .email:not(.inherit) a {
            text-decoration: none;
            color: #0026ff;
            transition: 300ms ease;
        }
        
        .email:not(.inherit) a:hover {
            color: #92a4ff;
        }
        
        .verifyCodeBlock>input[type=text] {
            font-size: 22px;
            font-family: Poppins;
            text-transform: uppercase;
            font-weight: bold;
            padding: 10px 0px;
            text-align: center;
        }
        
        .verifyCodeBlock>input[type=text]:focus {
            outline: 2px solid #0026ff;
            transform: scale(1.1);
        }
        
        button.confirm:hover:not(:disabled) {
            background-color: transparent;
            color: #0026ff;
            border: 1px solid;
        }
        
        .descriptionVerify a {
            cursor: pointer;
        }
        
        .page3 {
            padding-bottom: 10px;
        }
        
        .formContainer .verifyEmailOverview {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #0026ff;
            font-weight: 350;
        }
        
        form div.wrongInput input {
            outline: 2px solid #b10023;
        }
        
        button.confirm.openBttn:hover {
            background-color: #0026ff;
            color: white;
        }
        
        button.confirm.openBttn {
            color: #0026ff;
            font-size: 14px;
            display: none;
            transition: 500ms ease;
            border: 1px solid;
            background-color: transparent;
        }
        
        .innerContainer>div>p.warning {
            font-weight: bold;
            font-size: 12px;
        }
        
        .innerContainer>input {
            display: none;
        }
        
        .imagesGrid.Unsplash img {
            max-width: 100%;
            height: auto;
            display: block;
            cursor: pointer;
            object-fit: cover;
            transition: opacity 0.3s ease;
            opacity: 0;
            animation: fadeIn 0.5s forwards;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
        
        .searchBar button {
            display: flex;
            width: 60px;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            color: #0026ff;
            background-color: transparent;
            outline: transparent;
            border: none;
            border: 1px solid #0026ff;
            border-radius: 50%;
            aspect-ratio: 1;
            transition: 500ms ease-in;
        }
        
        .searchBar button:hover {
            color: white;
            background-color: #0026ff;
        }
        
        .menu>* {
            cursor: pointer;
            transition: 200ms ease;
        }
        
        .menu>*:hover {
            transform: scale(1.1);
            color: #0026ff;
        }
        
        .menu button {
            background: transparent;
            outline: transparent;
            border: none;
        }
        
        .icon>.settings>div {
            width: 100%;
        }
        
        label[for="initialen"] {
            padding-bottom: 5px;
        }
        
        .grid.colorGridContainer {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 5px;
            position: relative;
        }
        
        .menu {
            display: flex;
            gap: 10px;
            padding-bottom: 1rem;
        }
        
        .colorSuggestion {
            width: 30px;
            cursor: pointer;
            border-radius: 5px;
            border: 1px solid #9b9b9b;
            height: 30px;
        }
        
        #ColorPicker {
            position: absolute;
            z-index: -1;
        }
        
        .grid.colorGridContainer input[type="color"] {
            appearance: none;
            block-size: 30px;
            inline-size: 30px;
            padding: 0;
            margin: 0;
            border: 2px solid #0026ff;
            outline: none;
            background: transparent;
            width: 30px;
            height: 30px;
            -webkit-appearance: none;
            border-radius: 5px;
        }
        
        .grid.colorGridContainer input[type="color"]::-webkit-color-swatch {
            border: none;
        }
        
        .grid.colorGridContainer input[type="color"]::-webkit-color-swatch-wrapper {
            padding: 0;
        }
        
        .grid.colorGridContainer input[type="color"]::-webkit-color-swatch {
            border: none;
        }
        
        article.icon input {
            width: 60px;
        }
        
        .picture .result {
            min-width: 75px;
            border-radius: 5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 75px;
            font-family: "Roboto";
            font-weight: 700;
            font-size: 38px;
        }
        
        .email header,
        .picture header {
            font-size: unset;
            padding: 12px 12px 0 12px;
            color: black;
            margin: 0;
            border-bottom: 1px solid #0026ff;
        }
        
        .picture>header>label,
        .email>header>label {
            padding-bottom: 10px;
            font-weight: 400;
        }
        
        .email header button,
        .picture header button {
            padding: 6px 4px;
            font-family: "Noto Sans";
            font-weight: 300;
            margin-right: 1rem;
            font-size: 15px;
            background: transparent;
            outline: transparent;
            border: none;
            cursor: pointer;
            color: #707070;
        }
        
        .body>article {
            padding: 12px;
        }
        
        .body>article:not(:first-child) {
            display: none;
        }
        
        .email>header>button {
            cursor: auto;
        }
        
        .email>header>button.active,
        .picture>header>button.active {
            border-bottom: 3px solid #0026ff;
            font-weight: 400;
            color: #0026ff;
        }
        
        .eyeOfSight:hover {
            color: #0026ff;
            cursor: pointer;
        }
        
        .closed {
            display: none;
        }
        
        .suggestionsBoard li::before {
            content: "";
            position: relative;
            height: 14px;
            width: 14px;
            display: block;
            border: 1px solid rgb(43, 43, 43);
            border-radius: 50%;
        }
        
        .suggestionsBoard li.done {
            color: #0026ff;
        }
        
        .suggestionsBoard li.done::before {
            background-color: #0026ff;
            border-color: #0026ff;
        }
        
        #password:active .suggestionsBoard {
            display: block;
        }
        
        .suggestionsBoard li p {
            font-weight: 300;
            margin-bottom: 0;
        }
        
        .strengthIndicator {
            display: flex;
            gap: 5px;
        }
        
        .strength {
            height: 10px;
            position: relative;
            width: 30px;
            transition: 500ms ease background-color;
            border-radius: 5px;
            background-color: rgb(226, 226, 226);
        }
        
        form input.showPassword {
            background-color: #dde2ff;
            outline: 1px solid #516bff;
        }
        
        .suggestionItem {
            font-weight: 400;
            transition: 500ms ease-in-out color;
            margin-right: 8px;
            cursor: pointer;
        }
        
        .suggestionItem:hover {
            color: #0026ff;
            padding-bottom: 3px;
        }
        
        .extraOptionUI {
            margin-top: 10px;
        }
        
        .prefix>div>.prefixOption>p {
            margin-bottom: 0;
        }
        
        .prefixOption input[type=radio] {
            opacity: 0;
            position: absolute;
        }
        
        .customCheckBox {
            height: 20px;
            width: 20px;
            border: 1px solid #0026ff;
            display: inline-block;
            border-radius: 5px;
            background: white;
            transition: 0.3s ease;
        }
        
        .prefixOption input[type=radio]:checked+.customCheckBox {
            background: #516bff;
            border-color: #0026ff;
        }
        
        .prefix .special {
            border: 1px solid #8797ff;
            display: flex;
            align-items: center;
            background-color: #d2d8ff;
            justify-content: center;
            border-radius: 50%;
            aspect-ratio: 1;
            width: 32px;
            height: 32px;
        }
        
        .prefix>.prefixOption>input[type="radio"] {
            width: max-content;
            border: none;
            outline: transparent;
        }
        
        .container footer {
            padding-bottom: 1rem;
            display: flex;
            gap: 10px;
            align-items: center;
            color: white;
        }
        
        button[type="submit"].processing {
            display: flex;
            align-items: center;
            background-color: #516bff;
            cursor: not-allowed;
            height: 49px;
            justify-content: center;
        }
        
        .processing>svg {
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        .container form>b {
            font-family: "Poppins";
        }
        
        .container p {
            font-family: "Noto sans";
            margin-bottom: 1rem;
            font-weight: 200;
        }
        
        .formFlexBox.inherit.special {
            margin-top: 1rem;
            display: flex;
        }
        
        .formFlexBox.inherit.option {
            padding-top: 5px;
            padding-bottom: 1rem;
        }
        
        .availability {
            font-weight: 700;
            font-size: 13px;
            font-family: "Poppins";
            transition: 300ms ease opacity;
        }
        
        .availability.good {
            color: #0026ff;
            animation: FadeIn 300ms ease forwards;
        }
        
        .availability.wrong {
            color: #ff1744;
            animation: FadeIn 300ms ease forwards;
        }
        
        .updateMessage {
            padding: 12px;
            border: 2px solid;
            color: rgb(65, 65, 65);
            margin-right: 1rem;
            border-radius: 5px;
            margin-bottom: 2rem;
        }
        
        .updateMessage .semiHeader {
            font-weight: 500;
            font-size: 18px;
            color: black;
            font-family: "Poppins";
        }
        
        .updateMessage p {
            padding-top: 15px;
            font-weight: 300;
            margin: 0;
        }
        
        .submitBox svg {
            color: #0026ff;
        }
        
        .submitBox p {
            font-weight: 300;
        }
        
        .anchor {
            color: #0026ff;
            font-family: "Noto sans";
            font-weight: 300;
            text-decoration: none;
        }
        
        .anchor:hover {
            color: #000000;
        }
        
        .emailPart {
            padding: 8px 18px;
            border: 1px solid;
            width: max-content;
            border-radius: 7px;
            font-weight: 300 !important;
            color: #0026ff;
            margin-bottom: 2rem !important;
            position: relative;
        }
        
        .emailPart.loading {
            color: transparent !important;
            border-color: #0026ff;
        }
        
        .emailPart.loading::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: calc(100% - 10px);
            width: calc(100% - 10px);
            margin: 5px;
            border-radius: 5px;
            background-color: #516bff;
            overflow: hidden;
            background-image: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
            background-repeat: no-repeat;
            background-size: 200% 100%;
            animation: wave 2s linear infinite;
        }
        
        @keyframes wave {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -100% 0;
            }
        }
        
        .errorMessageContainer {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 350px;
            display: grid;
            row-gap: 5px;
            max-height: 500px;
            overflow-y: scroll;
        }
        
        .errorMessageContainer::-webkit-scrollbar {
            display: none;
        }
        
        .errorMessage {
            display: flex;
            gap: 1rem;
            align-items: start;
            width: 100%;
            padding: 12px;
            border: 1px solid #ff2727;
            background-color: #f7cdc7;
            border-radius: 5px;
            font-family: Noto Sans;
            font-weight: 300;
            font-size: 14px;
        }
        
        .errorMessage .headerMessage {
            font-weight: 600;
            margin-bottom: 5px;
            font-family: Poppins;
            font-size: 16px;
        }
        
        .errorMessage .tag {
            padding: 4px 8px;
            border: 1px solid;
            color: #b10023;
            border-radius: 5px;
        }
        
        .signinContainer {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .signinContainer #sso {
            aspect-ratio: 1;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #0026ff;
            color: white;
            border-radius: 10px;
        }
        
        .signinContainer #sso:hover {
            background-color: black;
        }
        
        .subTitleHeaderLgn {
            margin-top: -1.6rem;
            font-weight: 500;
            padding-bottom: 1rem;
        }
        
        .subTitleHeaderLgn b {
            color: #0026ff;
        }
        
        .accountSelector {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
        }
        
        .accountSelector .icon img {
            max-width: 40px;
            border-radius: 50%;
            max-height: 40px;
        }
        
        .accountSelector .icon {
            display: flex;
            align-items: center;
        }
        
        .accountSelector.newAccount {
            gap: 10px;
        }
        
        .accountSelector .credentials {
            display: flex;
            align-items: start;
            justify-content: space-between;
            width: 100%;
        }
        
        .accountSelection .status {
            font-size: 14px;
            font-family: Roboto;
            color: #707070;
        }
        
        .accountSelector .credentials div {
            display: grid;
        }
        
        .accountSelector .credentials .name {
            font-weight: 600;
            font-family: Poppins;
        }
        
        .accountSelector .credentials .email {
            font-weight: 300;
            font-family: Poppins;
            font-size: 14px;
        }
        
        .accountSelection .accountSelector:not(:last-child) {
            border-bottom: 1px solid #9b9b9b;
            padding-bottom: 1rem;
        }
        
        .accountSelector:hover {
            cursor: pointer;
            background-color: #f0f0f0;
        }
        
        .accountSelector:first-child:hover {
            border-radius: 15px 15px 0 0;
        }
        
        .accountSelector:last-child:hover {
            border-radius: 0 0 15px 15px;
        }
        
        .iconContainer {
            width: 40px;
            height: 40px;
            border: 1px solid black;
            font-family: poppins;
            font-size: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .accountSelectionLoader {
            width: 40px;
            height: 40px;
            position: relative;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .accountSelectionLoader.start::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 3px solid #0026ff;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 1.2s linear infinite;
            box-sizing: border-box;
            z-index: 2;
        }
        
        .accountSelectionLoader {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .accountSelectionLoader.start>img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            animation: shrinkDuringSpin 300ms forwards;
        }
        
        @keyframes shrinkDuringSpin {
            0% {
                width: 40px;
                height: 40px;
            }
            100% {
                width: 30px;
                height: 30px;
            }
        }
        
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
        
        .accountSelectionLoader.finished::before {
            border-color: #0026ff;
            border-top-color: #0026ff;
            animation: none;
        }
        
        @keyframes checkmark {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 0;
            }
            60% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
        }
        
        .accountSelectionLoader.finished::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background-color: #0026ff;
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0);
            opacity: 0;
            animation: fillAndCheck 0.5s ease-out forwards;
            z-index: 2;
        }
        
        .accountSelectionLoader.finished::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'><path d='M20.285 6.709a1 1 0 0 0-1.414-1.418l-9.192 9.197-4.546-4.549a1 1 0 1 0-1.414 1.415l5.253 5.257a1 1 0 0 0 1.414 0l9.899-9.902z'/></svg>");
            background-size: 24px 24px;
            background-repeat: no-repeat;
            background-position: center;
            transform: translate(-50%, -50%) scale(0);
            opacity: 0;
            animation: checkmark 0.4s ease-out 0.4s forwards;
            z-index: 3;
        }
        
        @keyframes fillAndCheck {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 0;
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
        }
        
        @keyframes checkmark {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 0;
            }
            60% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
        }