.login {
    width: 100%;
    height: 100vh;
    background-image: url("/assets/images/background/login.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.login-container {
    padding: 50px;
}

.login-logo {
    width: 292px;
    max-width: 95vw;
}

.login-header {
    margin-top: 80px;
    margin-bottom: 20px;
}

.login-header-text {
    font-family: "Poppins Medium", Arial, Helvetica, sans-serif;
    color: white;
    font-size: max(49px, 3.8vw);
}

.login-header-text--bold {
    font-weight: bold;
    display: block;
}

.form {
    width: 340px;
    max-width: 95vw;
    display: flex;
    flex-direction: column;
}

.form-input {
    height: 43px;
    background: linear-gradient(to right, rgba(254, 255, 255, 0.97), rgba(154, 155, 155, 0));
    border: none;
    outline: none;
    border-radius: 5px;
    margin: 9px 0;
    font-weight: bold;
}

#form-input {
    height: 43px;
    border: none;
    outline: none;
    border-radius: 5px;
    margin: 9px 0;
    font-weight: bold;
    cursor: pointer;
    background-color: white;
}

#form-input:hover {
    background-color: rgb(238, 238, 238);
}

@media screen and (max-width: 768px) {
    .login-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
    }

    .login-header-text--bold {
        text-align: center;
    }
}

@media screen and (max-width: 320px) {
    .login-header-text {
        font-size: 17vw;
    }
}