/* open-sans-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('/open-sans-v36-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

*, ::before, ::after {
    box-sizing: border-box;
  }

body {
    font-family: "Open Sans";
    padding-top: 50px;
}
  
form {
    background: #e2e3e3;
  padding: 20px;
}
.title {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 50px;
    color: #2d599f;
    margin-bottom: 50px;
}
.container {
    width: 665px;
    margin: 0 auto;
}

.d-flex {
    display: flex;    
    width: 100%;    
}

p {
    padding: 10px;
    text-align: center;
}

.d-flex > div {
    padding: 10px;
    width: 50%;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border:0;
    border-bottom: 1px solid #000
}

label {
    margin-bottom: 10px;
    display: block
}

input[type="submit"] {
    width: 300px;
    display: block;
    margin: 20px auto;
    border: 0;
    background: #2d599f;
    color: #fff;
    padding: 10px;
    font-family: Open Sans;
    font-size: 18px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #102547;
}