body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-image {
    width: 400px;
    height: 400px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

.Extras {
    text-align: left;
}

.Extras a {
    color: #00572c;
    margin-right: 10px;
}

.Extras a:hover {
    color: white;
}

.submit-button {
    background-color: #00572c;
    color: #fff;
    border: 1px solid #00572c;
    border-radius: 3px;
    padding: 10px 20px;
    cursor: pointer;
}

.submit-button:hover {
    background-color: white;
    color: #00572c;
    box-shadow: 0 0 10px white;
}

.error-message {
    color: red;
}
