.loginform {
    height: 60vh;
}

.center-header {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
}

.center {
    display: flex;
    flex-direction: column;
    justify-self: center;
    width: fit-content;
    margin-top: 100px;
    border-radius: 8px;
    background-color: rgb(223, 224, 223);
    width: 500px;
}

.center h1 {
    text-align: center;
    font-size: 1.7rem;
    padding: 20px;
}

form > input {
    padding: 10px;
    margin: 8px 50px;
    width: 400px;
    border-radius: 5px;
    border: 1px solid black;
}

form input[type="submit"] {
    background-color: rgb(179, 226, 131);
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: rgb(162, 201, 123);
}