/* Petsity Triton Verification Styles */
.petsity-triton-box {
    max-width: 600px;
    margin: 40px auto;
    padding: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.petsity-triton-login-required {
    padding: 48px 32px;
    text-align: center;
}

.triton-content {
    padding: 48px 32px;
    text-align: center;
}

.triton-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
}

.triton-icon svg {
    width: 80px;
    height: 80px;
}

.petsity-triton-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.triton-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.triton-process-info {
    background: #f9fafb;
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
    text-align: left;
}

.triton-process-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.triton-process-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.triton-process-info li {
    font-size: 14px;
    color: #4b5563;
    padding: 6px 0;
    line-height: 1.5;
}

/* Buttons */
.petsity-triton-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    min-width: 200px;
    position: relative;
}

.petsity-triton-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.petsity-triton-btn-primary {
    background: #E75301;
    color: #ffffff;
}

.petsity-triton-btn-primary:hover:not(:disabled) {
    background: #cc4700;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(250, 73, 24, 0.4);
    color: #ffffff;
}

.petsity-triton-btn-success {
    background: #E75301;
    color: #ffffff;
}

.petsity-triton-btn-success:hover:not(:disabled) {
    background: #E75301;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(250, 73, 24, 0.4);
    color: #ffffff;
}

.petsity-triton-btn-secondary {
    background: #6b7280;
    color: #ffffff;
    margin-top: 12px;
}

.petsity-triton-btn-secondary:hover:not(:disabled) {
    background: #4b5563;
    color: #ffffff;
}

.petsity-triton-btn-outline {
    background: transparent;
    border: 2px solid #d1d5db;
    color: #6b7280;
}

.petsity-triton-btn-outline:hover:not(:disabled) {
    border-color: #9ca3af;
    color: #ffffff;
}

/* Loader */
.btn-loader {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #E75301;
}

.petsity-triton-btn.loading .btn-text {
    opacity: 0;
}

.petsity-triton-btn.loading .btn-loader {
    display: block !important;
}

/* Spinner Animation */
.spinner {
    animation: rotate 2s linear infinite;
    width: 20px;
    height: 20px;
}

.spinner-large {
    animation: rotate 2s linear infinite;
    width: 60px;
    height: 60px;
}

.spinner .path,
.spinner-large .path {
    stroke: currentColor;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* Messages */
.triton-message {
    margin: 3px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    visibility: hidden;
}

.triton-message.show {
    visibility: visible;
}

.triton-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.triton-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.triton-message.info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #3b82f6;
}

/* State Management */
.triton-state {
    display: none;
}

.triton-state.active {
    display: block;
}

/* Responsive */
@media (max-width: 640px) {
    .petsity-triton-box {
        margin: 20px 16px;
    }

    .triton-content {
        padding: 32px 20px;
    }

    .petsity-triton-btn {
        width: 100%;
    }
}