/* Create Page Styles */
.create-card-section {
    padding: 4rem 0;
    background: #ffffff;
    min-height: 80vh;
}

.create-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.create-header {
    text-align: center;
    margin-bottom: 3rem;
}

.create-header h1 {
    /* Use design system class .text-page-title instead */
}

.create-description {
    /* Use design system class .text-description instead */
}

.create-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e1e4e8;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.label-optional {
    font-weight: 400;
    color: #718096;
    font-size: var(--font-size-sm);
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    resize: vertical;
    background: rgba(249, 250, 251, 0.5);
}

.form-input:focus {
    outline: none;
    border-color: rgba(38, 38, 39, 0.3);
    box-shadow: 0 0 0 1px rgba(38, 38, 39, 0.05);
    background: white;
}

.form-input::placeholder {
    color: #718096;
    font-size: var(--font-size-sm);
    opacity: 1;
}

.form-hint {
    margin-top: 0.5rem;
    font-size: var(--font-size-sm);
    color: #718096;
}

.form-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.rate-limit-info {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.rate-limit-info small {
    color: #718096;
    font-size: var(--font-size-sm);
}

/* Colorful loading spinner */
.colorful-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top: 3px solid #3b82f6;
    border-right: 3px solid #10b981;
    border-bottom: 3px solid #f59e0b;
    border-left: 3px solid #ef4444;
    animation: colorful-spin 1.5s linear infinite;
}

@keyframes colorful-spin {
    0% { 
        transform: rotate(0deg);
        border-top-color: #3b82f6;
        border-right-color: #10b981;
        border-bottom-color: #f59e0b;
        border-left-color: #ef4444;
    }
    25% { 
        transform: rotate(90deg);
        border-top-color: #ef4444;
        border-right-color: #3b82f6;
        border-bottom-color: #10b981;
        border-left-color: #f59e0b;
    }
    50% { 
        transform: rotate(180deg);
        border-top-color: #f59e0b;
        border-right-color: #ef4444;
        border-bottom-color: #3b82f6;
        border-left-color: #10b981;
    }
    75% { 
        transform: rotate(270deg);
        border-top-color: #10b981;
        border-right-color: #f59e0b;
        border-bottom-color: #ef4444;
        border-left-color: #3b82f6;
    }
    100% { 
        transform: rotate(360deg);
        border-top-color: #3b82f6;
        border-right-color: #10b981;
        border-bottom-color: #f59e0b;
        border-left-color: #ef4444;
    }
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Privacy button container */
.privacy-toggle-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-icon {
    margin-right: 0.25rem;
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #4a5568;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.quick-link:hover {
    background: #f8f9fa;
    border-color: #262627;
    color: #262627;
    transform: translateY(-1px);
}

.link-icon {
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .create-card-section {
        padding: 2rem 0;
    }
    
    .create-header h1 {
        /* Mobile scaling handled by design system */
    }
    
    .create-form {
        padding: 2rem 1.5rem;
    }
    
    .quick-links {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-link {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .create-header h1 {
        /* Mobile scaling handled by design system */
    }
    
    .create-form {
        padding: 1.5rem 1rem;
    }
    
    .btn-large {
        width: 100%;
    }
}