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: 400px;
    height: 400px;
}

.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); }
}