:root {
    --bg-dark: #181A20;
    --bg-darker: #12151A;
    --bg-table: #1E2026;
    --text-primary: #ECF5FF;
    --text-secondary: #B0BEC5;
    --text-secondary-pressed: #8A9BAE;
    --accent-primary: #3AFFA3;
    --accent-primary-pressed: #29ba6d;
    --accent-secondary: #00C8FF;
    --border-color: #2B3139;
    --highlight: rgba(58, 255, 163, 0.1);
    --positive: #3AFFA3;
    --negative: #FF5E5E;
    --negative-pressed: #b34242;

    --secondary-bg-color: #2B3139;
    --secondary-text-color: #B0BEC5;
    --secondary-hover: #29ba6d;
}
.button-primary {
    background-color: var(--accent-primary);
    color: var(--bg-darker);
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-primary:hover {
        background-color: var(--accent-primary-pressed);
        color: var(--bg-darker);
    }
}

.button-primary:focus {
    outline: none;
}

.button-primary-small {
    background-color: var(--accent-primary);
    color: var(--bg-darker);
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-primary-small:hover {
        background-color: var(--accent-primary-pressed);
        color: var(--bg-darker);
    }
}

.button-primary-small:focus {
    outline: none;
}

.button-error {
    background-color: var(--negative);
    color: var(--bg-darker);
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-error:hover {
        background-color: var(--negative-pressed);
        color: var(--bg-darker);
    }
}

.button-error:focus {
    outline: none;
}

.button-error-small {
    background-color: var(--negative);
    color: var(--bg-darker);
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-error-small:hover {
        background-color: var(--negative-pressed);
        color: var(--bg-darker);
    }
}

.button-error-small:focus {
    outline: none;
}

.button-close {
    background-color: transparent;
    color: var(--text-secondary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-close:hover {
        background-color: var(--highlight);
        color: var(--accent-primary);
    }
}

.button-close:focus {
    outline: none;
}

.button-back {
    position: absolute;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    top: 20px;
    left: 20px;
    padding: 10px 16px;
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    gap: 8px;
}

@media (hover: hover) and (pointer: fine) {
    .button-back:hover {
        background-color: var(--highlight);
        color: var(--accent-primary);
        border-color: var(--accent-primary);
    }

    .button-back:hover svg path {
        stroke: var(--accent-primary);
    }
}

.button-back:focus {
    outline: none;
}

.button-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-primary);
    color: var(--bg-darker);
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-fab:hover {
        background-color: var(--accent-primary-pressed);
        color: var(--bg-darker);
    }
}

.button-fab:focus {
    outline: none;
}

.button-icon {
    background-color: transparent;
    color: var(--text-secondary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-icon:hover {
        background-color: var(--highlight);
        color: var(--accent-primary);
    }
}

.button-icon:focus {
    outline: none;
}

.button-link {
    background-color: transparent;
    color: var(--accent-primary-pressed);
    border: none;
    padding: 0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-link:hover {
        color: var(--accent-primary);
        text-decoration: underline;
    }
}

.button-link:focus {
    outline: none;
}

/* button-action-small for compact action buttons */
.button-action-small {
    background-color: transparent;
    color: var(--accent-primary);
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-action-small:hover {
        color: var(--accent-primary-pressed);
    }
}

.button-action-small:focus {
    outline: none;
}

/* SVG icon button */
.button-svg-icon {
    background: transparent;
    border: none;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.button-svg-icon:focus {
    outline: none;
    fill: var(--text-secondary);
    transition: fill 0.3s ease;
}

.button-svg-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
    transition: fill 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-svg-icon:hover svg,
    .button-svg-icon:focus svg {
        fill: var(--accent-primary);
    }
}

/* SVG icon button */
.button-svg-icon-stroke {
    background: transparent;
    border: none;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: fill 0.3s ease;
}

.button-svg-icon-stroke:focus {
    outline: none;
    stroke: var(--text-secondary);
}

.button-svg-icon-stroke svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-secondary);
}

@media (hover: hover) and (pointer: fine) {
    .button-svg-icon-stroke:hover svg {
        stroke: var(--accent-primary);
    }
}

.button-secondary-small {
    background-color: var(--secondary-bg-color);
    color: var(--secondary-text-color);
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-secondary-small:hover {
        background-color: var(--secondary-hover);
        color: var(--bg-darker);
    }
}

.button-secondary-small:focus {
    outline: none;
}

.button-text-small {
    background-color: transparent;
    color: var(--text-secondary);
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-text-small:hover {
        color: var(--accent-primary-pressed);
    }
}

.button-text-small:focus {
    outline: none;
}

.button-list-item {
    width: 100%;
    background-color: transparent;
    color: var(--text-secondary);
    border: none;
    border-radius: 4px;
    padding: 5px 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .button-list-item:hover {
        color: var(--accent-primary-pressed);
    }
}

.button-list-item:focus {
    outline: none;
}

.button-menu-item {
    width: 100%;
    background-color: transparent;
    color: var(--text-secondary);
    border: none;
    border-radius: 4px;
    padding: 5px 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.button-menu-item:focus {
    outline: none;
}

@media (hover: hover) and (pointer: fine) {
    .button-menu-item:hover {
        color: var(--accent-primary-pressed);
    }
}
.modal-content {
    color: white;
    background-color: #181A20;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.modal-header,
.modal-footer {
    border-color: #6c757d;
}

/* Dark‐mode form controls inside any .modal-content */
.modal-content .form-control {
    background-color: #181A20;
    border-color: #495057;
    color: #cdcdcd;
}

/* Placeholder text */
.modal-content .form-control::placeholder {
    color: #393939;  /* lighter gray */
    opacity: 1;      /* ensure full visibility */
}
/* For older WebKit browsers */
.modal-content .form-control::-webkit-input-placeholder {
    color: #393939;
}
.modal-content .form-control:-ms-input-placeholder {
    color: #393939;
}
.modal-content .form-control::-ms-input-placeholder {
    color: #393939;
}
.dyor-switch {
    /* —— CONFIGURABLE VARS —— */
    --switch-width: 30px;
    --switch-height: 15px;
    --knob-size: 13px;
    --knob-offset: 1px;
    /* ———————————————— */

    position: relative;
    display: inline-block;
    width: var(--switch-width);
    height: var(--switch-height);
}

.dyor-switch-container {
    display: inline-flex;
    align-items: center;
}

.dyor-switch-text {
    margin-right: 0.5em; /* space between text and switch */
    user-select: none;
    font-size: 0.9em;
    color: var(--text-primary);
}

.dyor-switch .dyor-switch-input {
    /* hide the native checkbox */
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.dyor-switch .dyor-switch-label {
    /* the track */
    display: block;
    width: 100%;
    height: 100%;
    background-color: #6c757d;
    border-radius: calc(var(--switch-height) / 2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dyor-switch .dyor-switch-label::before {
    /* the knob */
    content: "";
    position: absolute;
    width: var(--knob-size);
    height: var(--knob-size);
    left: var(--knob-offset);
    top: var(--knob-offset);
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

/* checked = active state */
.dyor-switch .dyor-switch-input:checked ~ .dyor-switch-label {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.dyor-switch .dyor-switch-input:checked ~ .dyor-switch-label::before {
    transform: translateX(calc(var(--switch-width) - var(--knob-size) - 2 * var(--knob-offset)));
}
* {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

body {
    margin: 0;
    background-color: #181A20;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: "Onest", serif;
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80vw;
    width: 80dvw;
    padding: 1rem;
    box-sizing: border-box;
}

img {
    width: 100%;
    max-width: 281px;
    height: auto;
}

.login-text {
    text-align: left;
    margin-bottom: 20px;
}

.login-text h1 {
    font-size: 32px;
    font-weight: 700;
    color: #ECF5FF;
    margin-bottom: 10px;
}

.login-text p {
    font-size: 16px;
    color: #ACACAC;
    margin: 0;
}

.submit-button {
    width: 100%;
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 25px;
    font-size: 16px;
    background-color: #3AFFA3;
    color: #152F23;
    font-family: 'Onest', serif;
    font-weight: 500;
    cursor: pointer;
    border: solid 1px;
    transition: 0.3s;
}

.register {
    color: #ECF5FF;
    margin-top: 35px;
    font-size: 14px;
    text-align: left;
}

.register a {
    color: #3AFFA3;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

@media (hover: hover) and (pointer: fine) {
    .submit-button:hover {
        background-color: rgba(21, 47, 35, 0);
        color: #ECF5FF;
        border: solid 1px #4B5563;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .login-wrapper {
        padding: 16px;
        width: 95vw;
        width: 95dvw;
    }

    .login-text h1 {
        font-size: 28px;
    }

    .login-text p {
        font-size: 14px;
    }

    .submit-button {
        font-size: 16px;
        padding: 12px 16px;
    }
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #454545 inset !important;
    box-shadow: 0 0 0 1000px #454545 inset !important;
    -webkit-text-fill-color: #9CA3AF !important;
    transition: background-color 5000s ease-in-out 0s;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    width: 100%;
}

.input-wrapper i {
    position: absolute;
    left: 14px;
    color: #9CA3AF;
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.input-wrapper .clear-icon {
    position: absolute;
    right: 8px;
    font-size: 16px;
    color: #9CA3AF;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.input-wrapper .toggle-password {
    padding-left: 10px;
    padding-right: 10px;
    align-content: center;
    height: 100%;
    top: 50%;
    cursor: pointer;
    left: auto; /* cancel the left:14px */
    right: 45px; /* hug the right edge */
}

@media (hover: hover) and (pointer: fine) {
    .input-wrapper .clear-icon:hover,
    .input-wrapper .toggle-password:hover {
        color: #3AFFA3;
    }
}
form {
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input {
    width: 100%;
    background-color: #454545;
    border: solid 1px #4B5563;
    border-radius: 8px;
    padding: 14px 18px 14px 40px;
    font-size: 16px;
    color: #9CA3AF;
    outline: none;
    box-sizing: border-box;
    caret-color: #ffffff;
}

.form-group input:focus {
    border-color: #ACACAC;
    color: #9CA3AF;
}

form label {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    font-family: "Onest", serif;
}
.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 12px;
    padding: 10px 36px 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #ECF5FF;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
    background-image: url("data:image/svg+xml;utf8,<svg fill=\"#f7fafc%22%20height=%2216%22%20viewBox=%220%200%2024%2024%22%20width=%2216%22%20xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath%20d=%22M7%2010l5%205%205-5z%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    min-width: 120px;
}

.custom-select:hover {
    background-color: #4a5568;
}

.custom-select:focus {
    outline: none;
}
/* Container: stacked column */
.toast-container-v2 {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    overflow-y: auto;
    gap: 10px;
}

/* Base toast */
.toast-v2 {
    position: relative;
    background-color: #333;
    color: #fff;
    padding: 16px;
    height: auto;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.5s;
    overflow: hidden; /* for progress bar */
}

/* Types */
.toast-success-v2 {
    background-color: #4CAF50;
}

.toast-error-v2 {
    background-color: #f44336;
}

/* Inner message */
.toast-message-v2 {
    display: block;
}

/* Progress bar */
.toast-progress-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    transition: width linear;
    /* transition-duration will be inherited from inline style duration */
}

/*# sourceMappingURL=register.41e4ab2c.css.map*/