@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: transparent;
}

.recaptcha-container {
    font-family: Roboto, helvetica, arial, sans-serif;
    position: relative;
    background: transparent;
}

.recaptcha-box {
    background: #fff;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    height: 74px;
    width: 300px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.checkbox-wrapper {
    position: relative;
    width: 28px;
    height: 28px;
}

.checkbox {
    width: 28px;
    height: 28px;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    background: #fff;
}

.text {
    margin-left: 12px;
    font-size: 14px;
    color: #000;
}

.recaptcha-logo {
    margin-left: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recaptcha-logo img {
    height: 24px;
}

.recaptcha-logo span {
    color: #9b9b9b;
    font-size: 10px;
    margin-top: 5px;
}

.recaptcha-logo a {
    color: #555;
    text-decoration: none;
    font-size: 8px;
    margin-top: 2px;
}

/* SVG Styles */
.spinner {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 32px;
    height: 32px;
    display: none;
}

.path {
    stroke: #4688f1;
    stroke-linecap: round;
    animation: dash 1.4s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
    transform-origin: center;
}

.checkmark {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 32px;
    height: 32px;
    display: none;
}

.check {
    stroke: #fff;
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: check 0.3s ease-in-out forwards;
}

/* Animation States */
.spinning .checkbox {
    border-color: transparent;
}

.spinning .spinner {
    display: block;
}

.checked .checkbox {
    border-color: transparent;
    background: #009688;
}

.checked .checkmark {
    display: block;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes check {
    0% {
        stroke-dashoffset: 48;
        stroke-dasharray: 48;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 48;
    }
}

.path {
    stroke-dasharray: 125;
    stroke-dashoffset: 125;
    animation: dash 1.4s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
    transform-origin: center;
}

@keyframes dash {
    0% {
        stroke-dashoffset: 125;
        transform: rotate(0);
    }
    50% {
        stroke-dashoffset: -125;
        transform: rotate(180deg);
    }
    100% {
        stroke-dashoffset: -375;
        transform: rotate(360deg);
    }
}

.verify-box {
    margin-top: 20px;
    text-align: center;
}

#verify-button {
    padding: 10px 20px;
    font-size: 14px;
    background-color: #4688f1;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#verify-button:hover {
    background-color: #357ae8;
}

.modal {
    display: none;
    position: absolute;
    z-index: 1;
    background: none;
    left: 50%;
    top: 50%;
    transform: translate(calc(-50% + 50px), -50%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.modal-content {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    width: 300px;
    text-align: left;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.modal-content h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.verification-steps {
    padding-left: 20px;
    margin: 0;
}

.verification-steps li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

kbd {
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
    color: #333;
    display: inline-block;
    font-family: monospace;
    font-size: 12px;
    line-height: 1;
    padding: 3px 6px;
    margin: 0 2px;
    vertical-align: middle;
}

kbd.win-key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 5px;
}

kbd.win-key svg {
    margin-right: 2px;
    color: #333;
}

.modal-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #ccc;
}

.modal-content::after {
    content: '';
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #fff;
}

#modal-verify-button {
    padding: 10px 20px;
    font-size: 14px;
    background-color: #4688f1;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#modal-verify-button:hover {
    background-color: #357ae8;
} 