.login-box{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    grid-area: form;
}

.login-box .user-box {
    position: relative;
}

.login-box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: black;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid black;
    outline: none;
    background: transparent;
}


.login-box .user-box label {
    position: absolute;
    top:0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: black;
    pointer-events: none;
    transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
    top: -12px;
    left: 0;
    color: black;
    font-size: 12px;
    
}

.form-login{
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.empty-error{
    color: red;
    width: 100%;
    font-size: 12px;
}


.submit-form{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #009D78;
    width: 75%;
    height: 30px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: .4s;
    height: 40px;
}

.submit-form:hover{
    width: 400px;
    height: 50px;
    transition: .3s ;
}
