.fake-recaptcha {
    border: 1px solid #d3d3d3;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    max-width: 302px;
    cursor: pointer;
    user-select: none;
    margin-top: 10px;
}

.fake-check {
    width: 24px;
    height: 24px;
    border: 2px solid #c1c1c1;
    margin-right: 10px;
    box-sizing: border-box;
}

.fake-recaptcha.verified .fake-check {
    border-color: #34a853;
    background: #34a853;
    position: relative;
}

.fake-recaptcha.verified .fake-check:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.fake-text .fake-main {
    font-size: 14px;
    color: #222;
}

.fake-logo {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    color: #777;
}

.fake-logo-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #4285f4;
    box-sizing: border-box;
    position: relative;
}

.fake-logo-icon:before,
.fake-logo-icon:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 2px solid #4285f4;
}

.fake-logo-text {
    margin-top: 2px;
}


.fake-recaptcha-center {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 10px 0;
}

