body {
    color: #555555;
    font-family: "Inter" !important;
}

h5 {
    font-weight: 700;
}

.cursor-pointer {
    cursor: pointer !important;
}

.mw-600 {
    max-width: 600px;
}

.mh-500 {
    max-height: 500px;
}

.mh-400 {
    max-height: 400px;
}

.overflow-scroll {
    overflow-y: scroll !important;
}

.text-byte {
    color: #467FF0;
}

.fs-10 {
    font-size: 10px;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.banner {
    display: flex;
    background-color: #1F2743;
    color: white;
    border-radius: 1.5rem !important;
    min-height: 150px;
}

.banner-image {
    position: absolute;
    width: 110px;
    height: 25px;
}

#loader-backdrop {
    width: 100%;
    height: 3000px;
    z-index: 1090;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #1a1a1a;
    opacity: 0.5;
    overflow: hidden;
}

.btn-byte {
    background-color: #3D3F6A;
    color: white;
}

.reset-button{
    width:45%;
}

.reset-btn-group{
    display: flex;
    justify-content: space-between;
}

.reset-password-image {
    width: 500px;
    height: 372.56px;
}

.finished-signup-image {
    width: 500px;
    height: 372.56px;
}

.sso-image {
    width: 30px;
    height: 30px;
}

.sso-button {
    height: 50px;
}

.progress-container {
    position: relative;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #555;
    z-index: 1;
}

.step-title {
    margin-left: 15px;
    font-size: 14px;
}

.step-sub-title {
    font-size: 10px;
    position: absolute;
    left: 46px;
    top: 25px;
}

.step::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 30px;
    width: 2px;
    height: 50px;
    background-color: #e0e0e0;
    z-index: 0;
}

.step:last-child::after {
    display: none;
}

.step.active::after {
    background-color: #1F2743;
}

.step.active .step-number::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    border: 3px solid #1F2743;
    border-radius: 50%;
    box-sizing: border-box;
    z-index: -1;
}

.step.active .step-number {
    background-color: #1F2743;
    color: white;
    box-shadow: 0 0 0 2px #1F2743;
}

.step.active .step-title,
.step.active .step-sub-title {
    color: #1F2743;
}

.step.completed::after {
    background-color: #6FD73B;
}

.step.completed .step-number {
    background-color: #6FD73B;
    color: white;
    box-shadow: 0 0 0 2px #6FD73B;
}

.step.completed .step-sub-title {
    color: #6FD73B;
}

.step.active.completed .step-number::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    border: 3px solid #6FD73B;
    border-radius: 50%;
    box-sizing: border-box;
    z-index: -1;
}

.flag-image {
    width: 24px;
    height: 24px;
}

.region-card {
    height: 56px;
    font-size: 14px;
}

.config-card {
    padding: 10px;
}

.card.active {
    background-color: #ECF3FF;
    color: #015AEB;
    border: 1px solid #015AEB;
}

.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

.error-border {
    border: 2px solid #e74c3c !important;
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.5);
    animation: fadeOutBorder 2s forwards;
}
@keyframes fadeOutBorder {
    0% { border-color: #e74c3c; box-shadow: 0 0 8px rgba(231, 76, 60, 0.5); }
    100% { border-color: transparent; box-shadow: 0 0 8px rgba(231, 76, 60, 0); }
}
.auth-register-page {
    min-height: 100vh;
    background: #ffffff;
}

.auth-register-banner {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 40px;
}

.auth-register-banner::before,
.auth-register-banner::after {
    content: "";
    position: absolute;
    width: 680px;
    height: 420px;
}

.auth-register-banner::before {
    left: -180px;
    top: -220px;
}

.auth-register-banner::after {
    right: -200px;
    bottom: -220px;
}

.auth-register-banner-logo {
    position: absolute;
    left: 40px;
    top: 40px;
    width: 120px;
    height: auto;
    z-index: 2;
}

.auth-register-banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    line-height: 1.35;
    max-width: 420px;
    z-index: 1;
}

.auth-register-container {
    max-width: 720px;
    padding-bottom: 48px;
}

.auth-register-card {
    max-width: 420px;
}

.auth-register-screen {
    text-align: center;
}

.auth-register-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.auth-register-subheading {
    font-size: 12px;
    color: #7a7a7a;
    margin-bottom: 26px;
}

.auth-register-form {
    text-align: left;
}

.auth-register-password-group {
    position: relative;
}

.auth-register-input-icon {
    position: absolute;
    right: 12px;
    top: 10px;
    color: #C2C2C2;
    cursor: pointer;
    font-size: 14px;
}

.auth-register-requirements {
    background: #f9d7b5;
    border-radius: 4px;
    padding: 12px 14px;
    margin-top: 12px;
    margin-bottom: 12px;
}

.auth-register-requirements-title {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
}

.auth-register-requirements-list {
    margin: 0;
    padding-left: 18px;
    font-size: 12px;
    color: #4f4f4f;
}

.auth-register-terms {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.auth-register-terms input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 2px solid #2b2b2b;
    border-radius: 2px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.auth-register-terms input[type="checkbox"]:checked {
    background: #111111;
    border-color: #111111;
}

.auth-register-terms input[type="checkbox"]:checked::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='3 8.5 6.5 12 13 4' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
}

.auth-register-terms input[type="checkbox"]:focus-visible,
.auth-register-terms input[type="checkbox"]:checked:focus-visible {
    outline: 2px solid #2b6ff7;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(43, 111, 247, 0.25);
}

.auth-register-terms-label {
    margin: 0;
    line-height: 100%;
    color: #555555;
}

.auth-register-terms a {
    color: #467ff0;
    text-decoration: underline;
}

.auth-register-btn {
    height: 40px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.auth-register-btn:hover {
    color: #ffffff;
}

.auth-register-btn-disabled,
.auth-register-btn:disabled {
    background: #d1d5db;
    color: #ffffff;
    cursor: not-allowed;
}

.auth-register-link-row {
    text-align: right;
}

.auth-register-link {
    font-size: 14px;
    color: #467ff0;
}

.auth-register-alert {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.auth-register-alert .alert {
    margin-bottom: 0;
    padding: 8px 16px;
    border-radius: 4px;
    background: #fce4e4;
    border: 1px solid #f6c5c5;
    color: #d9534f;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.auth-register-alert .alert-success {
    background: #e7f6ea;
    border-color: #c9eed3;
    color: #2e9f5b;
}

/* MOBILE */
@media (max-width: 992px) {

    .auth-banner-wrapper {
        width: 25% ! important;
    }

    .auth-form-wrapper {
        width: 74%;
    }

    .auth-register-banner-title {
        font-size: 18px;
        max-width: 320px;
    }

    .auth-register-banner-logo {
        width: 100px;
        top: 20px;
        left: 20px;
    }
}

.login-banner-text {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.auth-subheading {
    font-size: 14px !important;
    margin-bottom: 0px;
}

.agreement-content {
    text-align: justify;
    line-height: 1.6;
}
