.captcha-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.captcha-box {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  width: 100%;
  max-width: 400px;
  height: 115px;
  box-sizing: border-box;
}

.captcha-widget {
    max-width: 400px;
    margin: auto;
    font-family: Roboto, Helvetica, Arial, sans-serif;
}

.captcha-checkbox-window {
    height: 74px;
    width: 350px;
    background-color: #f9f9f9;
    border-radius: 3px;
    border: 1px solid #d3d3d3;
    position: relative;
}

.captcha-checkbox-container {
    width: 28px;
    height: 28px;
}

.captcha-checkbox {
    background-color: #fff;
    border-radius: 2px;
    height: 100%;
    width: 100%;
    border: 2px solid #c1c1c1;
    margin: 21px 0 0 12px;
    transition: border 0.3s;
}

.captcha-checkbox:hover {
    border-color: #b2b2b2;
}

.captcha-im-not-a-robot {
    position: absolute;
    left: 55px;
    top: 22px;
    font-size: 15px;
    color: #282727;
}

.captcha-logo {
    position: absolute;
    right: 16px;
    top: 10px;
    width: 40px;
    height: 45px;
}

.captcha-desc {
    font-size: 8px;
    text-align: right;
    right: 10px; 
    position: absolute;
    bottom: -10px;
    width: 100%;
    color: #555;
}

.captcha-desc a {
    color: #555;
    text-decoration: none;
}

.captcha-desc a:hover {
    text-decoration: underline;
}

.captcha-spinner {
    visibility: hidden;
    position: absolute;
    left: 12px;
    top: 27px;
    height: 20px;
    width: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top: 2px solid #333;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s linear;
    animation: captcha-spin 1s linear infinite;
}

@keyframes captcha-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Verify Window */
.captcha-verify-window {
    opacity: 0;
    visibility: hidden;
    width: 350px;
    background: #fff;
    border: 1px solid #cecece;
    box-shadow: 5px 6px 7px -3px rgba(0, 0, 0, 0.12);
    margin-top: 10px;
    transition: opacity 400ms;
}

.captcha-verify-container {
    padding: 8px;
    width: 100%;
}

.captcha-verify-header {
    background: #1A73E8;
    padding: 16px;
    color: #fff;
}

.captcha-verify-text-medium {
    font-size: 16px;
}

.captcha-verify-text-big {
    font-size: 24px;
    font-weight: 700;
}

.captcha-verify-main {
    padding: 5px;
    font-size: 13px;
    color: #111;
}

.captcha-verify-main ol {
    counter-reset: item;
    padding-left: 0;
}

.captcha-verify-main li {
    counter-increment: item;
    margin-bottom: 10px;
    list-style: none;
}

.captcha-verify-main li::before {
    content: counter(item) ". ";
    color: #1A73E8;
    font-weight: bold;
    margin-right: 8px;
}

.captcha-verify-footer {
    border-top: 1px solid #cecece;
    padding: 10px;
    color: #737373;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.captcha-verify-button {
    background: #5a89e2;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 15px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    cursor: not-allowed;
}

.m-p {
    margin: 0;
    padding: 0;
}

.block {
    display: block;
}

code {
    font-size: 9px;
    margin-left: 2px;
    color: gray;
}

.line-normal {
    line-height: normal;
}

ol {
    counter-reset: item;
    list-style-type: none;
    list-style-position: outside;
    padding-left: 0;

}

ol li {
    counter-increment: item;
    margin-bottom: 10px;

}

ol li::before {
    content: counter(item) ". ";
    color: #1A73E8;
    font-weight: bold;
    margin-right: 10px;
    margin-left: 10px;
}