body {
    background-color: #f4f3ef;
}
.whole {
    width: 35%;
    height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
h1 {
    text-align: center;
    background-color: #76bbf7;
    margin-bottom: 0;
    color: #247845;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.subject{
    width: fit-content;
    text-align: center;
}
.content {
    display: flex;
    justify-content: center;
    border: 1px solid #5c9975;
}
form {
    width: auto;
    margin-top: auto;
    margin-bottom: 0;
}
img {
    width: fit-content;
    height: fit-content;
}
input {
    width: 55%;
    font-size: 100%;
    color: #5a5854;
    background-color: #f2f2f2;
    border: 1px solid #bdbdbd;
    border-radius: 5px;
    padding: 5px 0px 5px 5px;
}

input[type="submit"] {
    width: 25%;
    color: #16344d;
    background-color: #95aabc;
}
input:hover{
    background-color: #c5da95;
    border: 1px solid #b1e1e4;
}
.inputLine {
    width: 100%;
    margin-bottom: 25px;
    text-align: end;
}
.title {
    float: left;
    width: 35%;
    text-align: right;
    padding-right: 10px;
}