.container-login {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    max-width: 500px;
    margin: auto
}

.overlay {
    position: fixed; /* Positioning and size */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128,128,128,0.5); /* color */
    display: none; /* making it hidden by default */
}

.modal-code{
    display: flex;
    background-color: #dfd6d6;
    width: 350px;
    height: 180px;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -200px;
    margin-top: -130px;
    z-index: auto;
}

.bi-arrow-up-short {
    color: green;
}

.bi-arrow-down-short {
    color: #0e0101;
}

.fixed-content {
    position: fixed;
    top: 0;
    left: 280px;
    width: calc(100% - 280px);
    height: calc(100%);
    overflow: auto;
}
