form {
    text-align: center;
    margin: 0 auto;
    width: 600px;
    /* height: 300px; */
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 5px;
    background: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    
}

input {
    display: block;
    padding: 2rem;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    border: none;
    border-radius: 5px;
    background: #222;
    color: #fff;
    box-sizing: border-box;
    width: 100%; 
    font-family: 'Open Sans', sans-serif;
    /* -webkit-font-smoothing: antialiased; */
    /* -moz-osx-font-smoothing: grayscale; */
}

input[type="submit"] {
    background: #333;
    color: #fff;
    cursor: pointer;
    transition-duration: 500ms;
    padding: 1rem 1rem;
}

input[type="submit"]:hover {
    background: #fff;
    color: #333;
}


input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 1000px #222 inset !important;
    box-shadow: 0 0 0 1000px #222 inset !important;
    -webkit-text-fill-color: #fff !important;
}

.infobox {
    margin: 0 auto;
    width: 600px;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 5px;
    background: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #fff;

    font-size: 1.2rem;
    font-family: 'Open Sans', sans-serif;
    /* -webkit-font-smoothing: antialiased; */
    /* -moz-osx-font-smoothing: grayscale; */
}