body {
    margin: 0;
    padding: 0;
    background: #f6f7f9;
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2937;
}

.wrap {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.box {
    width: 100%;
    max-width: 560px;
    background: #ffffff;
    border: 1px solid #dcdfe4;
    border-radius: 10px;
    padding: 32px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    transform: translateY(-3%);
}

h1 {
    margin: 0 0 18px 0;
    font-size: 28px;
    line-height: 1.2;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 160px;
    width: 100%;
    height: auto;
    display: inline-block;
}

@media (max-width: 768px) {
    .logo {
    text-align: center;
    margin-bottom: 20px;
    }

    .logo img {
        max-width: 120px;
        width: 100%;
        height: auto;
        display: inline-block;
    }
}

p {
    margin: 0 0 16px 0;
    font-size: 16px;
    line-height: 1.6;
}

.error {
    margin: 0 0 18px 0;
    padding: 12px 14px;
    border-radius: 8px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    font-size: 14px;
    line-height: 1.5;
}

.widget {
    margin-top: 20px;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
}

@media (max-width: 390px) {
    .box {
        padding: 20px 16px;
    }

    .cf-turnstile {
        transform: scale(0.93);
        transform-origin: center top;
    }
}

.note {
    font-size: 14px;
    color: #6b7280;
    margin-top: 16px;
}

.loading {
    display: none;
    margin-top: 18px;
    font-size: 14px;
    color: #374151;
}

.loading.active {
    display: block;
}