.login-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

    background-color: #F0F0F0;
}

.login-form-image{
    background-image: url("../images/form-image.png");
    background-size: cover;
    background-position: center;
    width: 50%;
    height: 100%;
}

.login-form-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
}

.login-form-container > h1{
    padding: 40px 10px;
    font-size: 25px;
    font-weight: 600;
}

.login-form-container > p{
    padding-top: 15px;
    font-size: 15px;
    color: #999;
}

.login-form-container > p > a{
    color: #333;
    text-decoration: underline;
}

.login-form-container > form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 450px;
}

.login-form-container > form > label{
    padding-bottom: 10px;
    width: 100%;
    font-size: 12px;
    color: #999;
}

.login-form-container > form > input{
    width: 100%;
    font-size: 16px;
    color: #333;
    border: 0;
    border-bottom: 1px solid #999;
    background-color: transparent;
    padding: 10px 0;
    margin-bottom: 20px;
}

.login-form-container > form > div > input{
    width: 100%;
    font-size: 16px;
    color: #333;
    border: 0;
    background-color: transparent;
    padding: 10px 0;
}

.login-form-container > form > input:focus,
.login-form-container > form > div > input:focus{
    outline: none;
}

.login-form-container > form > button{
    padding: 15px 70px;

    font-size: 16px;
    border-radius: 10px;
    border: 0;
    background-color: #F97417;
    color: #fff;

    cursor: pointer;
}

.login-form-container > form > button > i{
    padding-left: 10px;
}

.login-input-password{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #999;
    margin-bottom: 40px;
}

#password-show-hide{
    font-size: 30px;
    color: #999;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .login-form-image{
        display: none;
    }

    .login-form-container{
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .login-form-container > form{
        width: 100%;
    }
}