* {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #464646;
    padding: 0;
    margin: 0;
    height: 100%;
}

body {
    background: #F1F1F1;
    position: relative;
    height: 100%;
}

.wrapper {
    width: 50%;
    margin: 25px auto 0 auto;
    max-width: 550px;
    background: white;
    padding: 55px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  
}
.mainMsg {
    font-size: 20px;
    font-weight: bold;
}

.center {
    text-align: center;
}

.support {
    border-top: 1px solid #d8d5d5;
    padding-top: 25px;
    margin-top: 50px;
}

p {
    margin: 10px 0;
    line-height: 25px;
}

.button {
    white-space: nowrap;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    padding: 0 26px;
    border: none;
    -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    background: #fff;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .025em;
    color: #6772e5;
    text-decoration: none;
    -webkit-transition: all .15s ease;
    transition: all .15s ease;
    cursor: pointer;
    -webkit-appearance: none;
}

.button.continue {
    margin-right: 23px;
    color: #fff;
    background: #3ecf8e;
    text-shadow: 0 1px 3px rgba(36, 180, 126, .4);
}

.button.update {
    color: #fff;
    background: #7795f8;
}

.button:focus,
.button:hover {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    -webkit-box-shadow: 0 13px 27px -5px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3);
    box-shadow: 0 13px 27px -5px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 7px 14px rgba(50, 50, 93, .1), 0 3px 6px rgba(0, 0, 0, .08);
    box-shadow: 0 7px 14px rgba(50, 50, 93, .1), 0 3px 6px rgba(0, 0, 0, .08);
}



@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
    .wrapper {
        width: 80%;
        margin: 0;
        padding: 10%;
    }
    .button {
        width: 100%;
        margin: 10px 0;
        padding: 0;
    }
}