body::before {
    display: block;
    content: "";
    height: 56px;
}

body {
    background: whitesmoke;
}

.account {
    border-radius: 10px;
    background: white;
    width: 400px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #f0f0f0;
    padding: 10px 30px 30px 30px;
    -webkit-box-shadow: 5px 10px 10px rgba(0, 0, 0, .05);
    box-shadow: 5px 10px 10px rgba(0, 0, 0, .05);
    transition: .5s;
}

@media (max-width: 768px) {
    .account {
        width: 100%;
        margin-top: 0;
    }
}

.account .title {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
}

.account .form-group {
    margin-bottom: 20px;
}