html, body {
    margin: 0;
    padding: 0;
}
body {
    background-color: #BBDEFB;
}
.verify {
    font-family: "Roboto", sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.verify .verify-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: inherit;
    height: inherit;
}
.verify .verify-box {
    background-color: #fff;
    width: 400px;
    padding: 15px;
    box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    transition: box-shadow 1s;
}
.verify .verify-box:hover {
    box-shadow: 0 27px 24px 0 rgba(0,0,0,0.2),0 40px 77px 0 rgba(0,0,0,0.22);
}
.verify .input-field {
    margin-top: 0;
}
.verify p {
    text-align: center;
    font-size: 1.25rem;
}
.verify .btn {
    background-color: #0067ac;
}
.verify .btn:hover {
    background-color: #777;
}
.verify .logo {
    
}
.verify .logo img {
    width: 100%;
}
.verify .disclaimer {
    margin-top: 15px;
}
.verify .disclaimer p {
    text-align: left;
    font-size: .65rem;
    line-height: .8rem;
    margin: .35rem 0;
}
@media screen and (max-width:480px) {
    .verify .verify-box {
        width: 95%;
    }
    .verify p {
        font-size: 1rem;
    }
}
@media screen and (max-width:350px) {
    .verify .verify-container {
        background-color: #fff;
    }
    .verify .verify-box {
        width: 100%;
        box-shadow: none;
    }
    .verify .verify-box:hover {
        box-shadow: none;
    }
    .verify .logo {
        text-align: center;
    }
    .verify .logo img {
        max-width: 250px;
    }
}