body {
    background-color: #E95724;
    margin: 150px auto;
}

.home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.home a {
    text-decoration: none;
    width: 330px;
    height: 55px;
    background-color: #0D3DA3;
    text-align: center;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffff;
    text-transform: uppercase;

    &:hover {
        cursor: pointer;
    }
}

.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: #406FB7;
    color: #FFFF;
    border-radius: 10px;

    &:hover {
        background-color: #0D3DA3;
        cursor: pointer;
    }
}

.form-outline {
    padding-top: 10px;
}

.account {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.account a {
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0D3DA3;
    border-radius: 10px;
    color: #FFFF;
    text-decoration: none;
    text-align: center;
}