@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 500px;
    flex-grow: 1;
    padding: 20px;
    font-size: 20px;
    background: white;
}

.container,
input {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.logo h1 {
    font-weight: 700;
    font-size: 32px;
}

.logo span {
    font-weight: 500;
    font-size: 32px;
    color: #0a369d;
}

.container input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    margin-top: 5px;
    margin-bottom: 20px;
    border: 1px solid #6A6A6A;
    border-radius: 5px;
    font-size: 20px;
    padding: 5px;
}

.container button[type="submit"] {
    background: #0a369d;
    font-size: 20px;
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    border: none;
    color: white;
    cursor: pointer;
}