body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: #4e4e4e;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    font-family: "Roboto","Helvetica","Arial",sans-serif;
}

.container {
    border-radius: 6px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.728);
    border: 2px solid #375b86;
    background-color: #b4bdc8;
    padding: 24px;
    min-width: min(30%, 400px);
    max-width: 400px;
}

.container h1 {
    font-size: 1.5em;
    text-align: center;
    margin-top: 0;
    color: #375b86;
}

.container form {
    text-align: left;
}

.container form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    margin-top: 0;
    border: 1px solid #375b86;
    border-radius: 4px;
    box-sizing: border-box;
}

.container form input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 0;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
    background-color: #375b86;
    color: white;
    cursor: pointer;
    box-shadow: 0 2px 5px 0 rgb(116, 116, 116);
}

.container form input:focus {
    outline: none;
    border-color: #4871a4;
}


.container form input[type="submit"]:hover {
    background-color: #4871a4;
}

.container form input[type="submit"]:active {
    box-shadow: none;
    position: relative;
    top: -2px;
}

.container form label {
    font-size: 1em;
    text-align: center;
    margin-top: 10px;
    color: #375b86;
}