*{
    font-family: "Playfair Display", "Playfair Display", serif;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f1f5f8;
}

h2 {
    color: #1b1b1b;
}

.top-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
    padding: 30px;
    border: solid 1px rgb(237, 237, 237);
    border-radius: 5px;
}

.top-container form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.btnArea {
    margin-top: 15px;
}

.btnArea input {
    width: 150px;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid black;
}

.btnArea input:hover {
    background-color: #f9f9f9;
}

.home-link {
    margin-top: 25px;
}

.home-link a:hover {
    color: #828282;
}