body {
    margin: 0;
    background: #f0f2f5;
    font-family: Helvetica, Arial, sans-serif;
    color: #1c1e21;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.wrapper {
    width: 340px;
    padding: 24px 18px 28px;
}

.header {
    width: 304px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
}

.header img {
    height: 34px;
}

.verification-card {
    width: 304px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 4px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background .15s ease, box-shadow .15s ease;
}

.verification-card:hover {
    background: #f8f9fa;
    box-shadow: 0 1px 2px rgba(0,0,0,.08);
}

.checkbox {
    width: 26px;
    height: 26px;
    border: 2px solid #c1c7cd;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    transition: .18s ease;
}

.checkbox.checked {
    background: #1a73e8;
    border-color: #1a73e8;
}

.checkbox.checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.text {
    font-size: 14px;
    margin-left: 12px;
    color: #202124;
    letter-spacing: .1px;
}

.disclaimer {
    width: 304px;
    margin: 14px auto 0;
    font-size: 11px;
    color: #5f6368;
    line-height: 1.45;
}

.btn {
    width: 304px;
    margin: 22px auto 0;
    display: block;
    padding: 11px 0;
    border: none;
    border-radius: 6px;
    background: #1877f2;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.btn:hover {
    background: #166fe5;
}

.btn:active {
    transform: scale(.98);
}

@media (max-width: 360px) {
    .wrapper {
        width: 100%;
    }

    .verification-card,
    .disclaimer,
    .btn,
    .header {
        width: 100%;
    }
}