.form-label {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-size: 16px;
    color: #9b9d9e;
}

.change-language > button {
    border: 1px solid #9b9d9e;
    background-color: rgb(33 37 41);
    border-radius: 5px;
    line-height: 0px;
}

.change-language > button > img {
    width: 25px;
    height: 25px;
}

a {
    text-decoration: none;
}

.navbar-nav .nav-link:hover {
    color: #9b9d9e;
}

.navbar-nav .nav-link:active {
    color: #fff;
}

.form-wrapper {
    position: relative;
    min-height: 400px; /* adjust as needed */
}

.auth-container {
    width: 400px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.form-wrapper {
    display: flex;
    width: 200%;
    transition: transform 0.5s ease;
}

.form-box {
    width: 50%;
    padding: 30px;
}

.border {
    border-radius: 0.375rem;
}

.auth-container.active .form-wrapper {
    transform: translateX(-50%);
}

.switch {
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
    color: #007bff;
}

#progress-bar {
    width: 0;
    height: 3px;
    background-color: #007bff;
    transition: width 0.4s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}