.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    object-fit: cover;
    object-position: 100% 18%;
    filter: blur(6px);
}

.session-form {
    width: 340px;
    position: fixed;
    inset: 0px;
    height: 20rem;
    max-width: 100vw;
    max-height: 100dvh;
    padding: 10px;
    margin: auto;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    /*background-image: linear-gradient(to bottom left, #0401b0 0%, #0c0244 2%, #b75d25 20%,  #5f1b04 75%);*/
    backdrop-filter: blur(6px);
}

.session-form.register {
    height: 30rem;
}

.form-input {
    font-family: "Nunito", sans-serif;
    color: #fcfcfe;
    border-radius: 20px;
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: none;
    box-sizing: border-box;
    background-color: #5f1b04;
    box-shadow: 0 0 5px rgb(38, 38, 38);
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding-right: 35px;
}

.password-wrapper .password-toggle {
    position: absolute;
    top: 50%;
    width: 24px;
    height: 24px;
    right: 10px;
    transform: translateY(-50%);
}

.form-button.main {
    margin: 27px 0;
    font-family: "Nunito", sans-serif;
    font-size: 1.3rem;
    color: #fcfcfe;
    width: 100%;
    height: 40px;
    background-color: #5f1b04;
    border: none;
    border-radius: 20px;
}
.form-button.main:hover {
    background-color: #802405;
}

.form-button.side{
    font-size: 1.4rem;
}

@media screen and (max-width: 600px) {
    .session-form {
        width: 100%;
    }
}