body {
    padding-bottom: 0px;
}

.login_container {
    background-image: url(/assets/images/login/background.svg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.7);
    background-blend-mode: multiply;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 130px;
    min-height: 100svh;
}

.project_purpose {
    width: 90%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form_container {
    width: 90%;
    max-width: 470px;
    border-radius: 24px;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 76px 54px;
}

.form_container h2 {
    margin-bottom: 16px;
}

.carousel_item h1 {
    font-weight: 500;
    font-weight: 40px;
    line-height: 48px;
}

.carousel_item p {
    font-weight: 400;
    font-family: 'inter';
    font-size: 16px;
}

.form_container button {
    margin-top: 16px;
    border-radius: 6px;
    background-color: var(--new-main);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    cursor: pointer;
    padding: 22px;
    width: 100%;
    height: 64px;
}

#login-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login_copyright {
    color: var(--neutral-4);
    font-size: 12px;
}

#login-form label {
    font-size: 14px;
    color: var(--neutral-5);
}

#login-form input {
    border: 1px solid var(--neutral);
    padding: 8px;
    border-radius: 3px;
    height: 60px;
    box-shadow: unset;
    outline: unset;
}

.form_item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.password_toggler {
    position: absolute;
    bottom: 30px;
    transform: translateY(50%);
    right: 8px;
    cursor: pointer;
}

#password {
    padding-right: 40px;
}

@media (max-width: 1080px) {
    .login_container {
        padding: 20px;
        gap: 20px;
        align-items: flex-start;
        padding: 0px;
    }

    .project_purpose {
        display: none;
    }

    .form_container {
        padding: 24px;
        border-radius: 0px;
        max-width: unset;
        width: 100%;
        height: 100svh;
    }
}