.login__wrapper {
    max-height: 100vh; /* Set a maximum height that fits within the viewport */
    width: 100%;
    overflow-y: auto;
}

.login__wrapper h1 {
    font-weight: 600;
    font-size: 48px;
    line-height: 62px;
    color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.login__wrapper h6 {
    font-weight: normal;
    font-size: 16px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
    overflow-y: auto;
}

.login__wrapper h6 a {
    text-decoration-line: underline;
    color: #feb019;
    overflow-y: auto;
}

.login__wrapper .card {
    width: 80%;
    margin-top: 25px;
    margin-bottom: 25px;

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    border-radius: 5px;
    overflow-y: auto;
}

.login__wrapper .card .card-body {
    padding: 2rem;
}

.login__form label {
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.login__form input {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    border-radius: 5px;
}

.login__form input.error {
    border: 1px solid #dd3b45;
}

.login__form input:focus,
.login__form input:active {
    border: 1px solid #feb019;
    box-shadow: none;
}

.login__form button {
    width: 100%;
    margin: 25px auto;

    background: #feb019;
    border-radius: 5px;
    padding: 14px;

    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    color: #ffffff;
}

.login__form a {
    font-weight: normal;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    text-decoration-line: underline;
    color: #feb019;
}

.login__error {
    border: 1px solid #dd3b45;
    border-radius: 5px;
    padding: 1rem;

    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.login__error img {
    margin-right: 15px;
}

.login__error p {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.8);
}

.login__error p a {
    font-size: 14px;
    line-height: 18px;
}

@media screen and (max-width: 450px) {
    .login__wrapper h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .login__wrapper h6 {
        font-size: 14px;
        line-height: 19px;
    }

    .login__wrapper .card {
        width: 100%;
        margin-top: 15px;
        margin-bottom: 15px;
        overflow-y: auto;
    }

    .login__wrapper .card .card-body {
        padding: 1.5rem;
        overflow-y: auto;
    }

    .login__form label {
        font-size: 14px;
        line-height: 19px;
    }

    .login__form button {
        margin: 15px auto;
        padding: 10px;
        font-size: 14px;
        line-height: 19px;
    }

    .login__form a {
        font-size: 14px;
        line-height: 19px;
    }
}
