@import url('https://fonts.googleapis.com/css?family=Muli:300,700&display=swap');
* {
    box-sizing: border-box;
}

body {
    background-color:gainsboro;
    font-family: 'Muli', sans-serif;
    display: flex;
    height: 100vh;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.container {
    background-color: #fff;
    border: 3px rgb(115, 109, 109) groove;
    border-radius: 12px;
    padding: 50px;
    max-width: 900px;
    text-align: center;
}

.code-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.code {
    caret-color: transparent;
    border-radius: 5px;
    font-size: 70px;
    height: 120px;
    width: 100px;
    border: 1px solid #eee;
    margin: 1%;
    text-align: center;
    font-weight: 300;
    /* -moz-appearance: textfield; */
}


/* remove the arrow in input field to inc/decthe value */

.code::-webkit-outer-spin-button,
.code::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.code:valid {
    border-color: #2496e2;
    box-shadow: 0 12px 12px -5px rgba(0, 0, 0, 0.25);
}

.info {
    background-color: #eaeaea;
    display: inline-block;
    padding: 10px;
    line-height: 20px;
    max-width: 400px;
    color: #777;
    border-radius: 5px;
}

.info a {
    text-decoration: none;
    color: inherit;
}


@media (max-width: 600px) {
    .code-container {
        flex-wrap: wrap;
    }
    .code {
        font-size: 60px;
        height: 80px;
        max-width: 70px;
    }
}