body{
    margin: 150px auto;
}
.home{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #240046;
}
.home a{
    text-decoration: none;
    width: 330px;
    height: 55px;
    background-color: #FF9100;
    text-align: center;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffff;
    text-transform: uppercase;
}
.home form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.home form input{
    width: 300px ;
    height: 40px;
    border-radius: 10px;
    padding: 10px;
}

form div{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
label{
    font-size: 20px;
    color: #FFFF;
}
.user-login{
    margin-top: 10px;
    width: 200px;
    height: 40px;
    background-color: #FF9100;
    color: #FFFF;
    border-radius: 10px;

    &:hover{
        background-color: #FFFF;
        color: #FF9100;
        cursor: pointer;
    }
}
.form-outline{
    padding-top: 10px;
}
