.login-box {
    display: flex;
    width: 400px;
    margin: 100px auto;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: #ff9914;
}

a:hover {
    text-decoration: underline;
    background-color: #585858;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.login-button {
    background-color: #ff9914;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.login-button:hover {
    background-color: #c77700;
}