body {
    background-color: #fcfcfc;
    color: #333;
}

div.verify-text,
.verify-text,
#cf-please-wait+div div div .verify-text,
*[class*="verify"] {
    font-weight: 400 !important;
    -webkit-font-smoothing: antialiased !important;
    text-rendering: optimizeLegibility !important;
}

.tettx {
    color: rgb(78 78 78);
}

.verify-main {
    color: #333 !important;
}

.verify-verify-button {
    background: #333333 !important;
}

.checkbox-window {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    height: 74px;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 10px;
    overflow: hidden;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}

.checkbox-container {
    width: 28px;
    height: 28px;
    margin-left: 12px;
    margin-right: 8px;
    position: relative;
}

.checkbox {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 2px;
    border: 2px solid #888888;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
}

.checkbox.checked {
    border-color: #4285f4;
    background-color: #4285f4;
    position: relative;
}

.checkbox.checked::after {
    content: "";
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    top: -4px;
    left: 4px;
}

.spinner {
    visibility: hidden;
    position: relative;
}

.verify-window {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 0;
    transition: opacity 0.5s ease-in-out, height 0.5s ease-in-out;
}

.verify-window.active {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.verify-header {
    background-color: #e85d1a;
    padding: 10px;
    color: #fff;
    font-size: 14px;
}

.verify-main {
    padding: 10px;
    font-size: 14px;
    color: #fff;
}

.verify-footer {
    background-color: #f2f2f2;
    padding: 10px;
    text-align: right;
}

.verify-footer button {
    padding: 8px 15px;
    background: #4285f4;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.verify-window {
    width: auto;
}

.verify-header {
    background-color: #1a73e8;
    padding: 10px 16px;
    color: #fff;
    font-size: 14px;
    border-radius: 0;
}

.lds-ring div {
    border-color: #999 transparent transparent;
}

.lds-ring {
    display: inline-block;
    position: relative;
}

.lds-ring,
.lds-ring div {
    height: 1.875rem;
    width: 1.875rem;
}

.lds-ring div {
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border: 0.3rem solid transparent;
    border-radius: 50%;
    border-top-color: #313131;
    box-sizing: border-box;
    display: block;
    position: absolute;
}

.lds-ring div:first-child {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(1turn);
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height: 100vh;
}

.main-wrapper {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.main-content {
    margin: 3rem auto 0;
    max-width: 60rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
}

.footer {
    font-size: 0.75rem;
    line-height: 1.125rem;
    margin: 0 auto;
    max-width: 60rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
}

.footer-inner {
    border-top: 1px solid #d9d9d9;
    padding-bottom: 1rem;
    padding-top: 1rem;
    text-align: center;
}

.verify-window {
    font-family: Roboto, helvetica, arial, sans-serif;
    opacity: 0;
    visibility: hidden;
    margin: auto;
    width: 310px;
    transition: opacity 400ms;
}

.verify-header {
    background-color: #1a73e8;
    padding: 16px;
    color: #fff;
    font-size: 18px;
    border-radius: 8px 8px 0 0;
}

.verify-main {
    padding: 16px;
    font-size: 14px;
    color: #333;
}

.verify-main ol {
    padding-left: 20px;
}

.verify-main ol li {
    margin-bottom: 10px;
}

.verify-main code {
    display: block;
    margin-top: 10px;
    background-color: #f9f9f9;
    padding: 10px;
    font-size: 12px;
    border: 1px solid #ddd;
}

.verify-footer {
    background-color: #f2f2f2;
    padding: 16px;
    text-align: right;
}

.verify-footer button {
    padding: 10px 20px;
    background: #4285f4;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.overlay.active,
.verify-window.active {
    display: block;
}

#spinner2 {
    width: 40px;
    height: 40px;
    animation: rotate 4s linear infinite;
    margin-top: -4px;
}

.checkbox-window {
    opacity: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

html,
body {
    background: #222222 !important;
    color: #e0e0e0 !important;
}

.main-wrapper,
.main-content,
.footer,
.footer-inner {
    background: #222222 !important;
}

.footer-inner {
    border-top: 1px solid #ffffff !important;
}

.ray-id,
.footer span {
    color: #ffffff !important;
}

#checkbox-window {
    width: 320px !important;
    height: 70px !important;
    background: #222222 !important;
    border: 0.8px solid #999999 !important;
    border-radius: 0 !important;
    padding: 0 12px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.5s;
}

#checkbox {
    width: 26px !important;
    height: 26px !important;
    background: transparent !important;
    border: 2px solid #aaaaaa !important;
    border-radius: 4px;
    cursor: pointer;
}

.verify-text {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

#branding svg {
    height: 26px;
    width: auto;
}

.logo-text {
    fill: #FFFFFF !important;
}

#terms {
    font-size: 10px;
    color: #aaaaaa;
}

#terms a {
    color: #aaaaaa;
    text-decoration: underline;
}

.link-spacer {
    margin: 0 4px;
}

.security-review {
    margin: 50px 0 0 0 !important;
    padding: 0 20px !important;
    width: 100% !important;
    max-width: none !important;
    text-align: left !important;
    font-size: 25px;
    font-weight: 400;
    color: #cccccc !important;
    line-height: 1.4;
    box-sizing: border-box;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.modal {
    width: 420px;
    background: #222222;
    border: 0.8px solid #999999;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal p {
    font-size: 18px;
    margin-bottom: 20px;
}

.modal ol {
    text-align: left;
    max-width: 380px;
    margin: 0 20px;
    font-size: 16px;
    line-height: 1.6;
}

.modal code {
    display: block;
    margin: 20px auto;
    padding: 12px;
    background: #333;
    border: 1px solid #555;
    max-width: 380px;
    color: #e0e0e0;
}

.modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.modal-loading .lds-ring {
    width: 50px;
    height: 50px;
}

.modal-loading .lds-ring div {
    border-width: 5px;
    border-top-color: #aaaaaa;
}

.modal-loading-text {
    font-size: 16px;
    color: #ffffff;
}