/* Email Confirmation Pages */
.email-confirmation-container, .register-confirmation-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 20px; /* Top padding für Header */
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.confirmation-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.register-confirmation-container .confirmation-card {
    max-width: 700px;
}

.loading-section, .success-section, .error-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loading-spinner, .success-icon, .error-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.spinner {
    animation: rotate 2s linear infinite;
}

.path {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: 0;
    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; }
}

.success-icon svg, .error-icon svg {
    width: 100%;
    height: 100%;
    animation: iconPop 0.6s ease-out;
}

@keyframes iconPop {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.confirmation-card h1 {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.register-confirmation-container .confirmation-card h1 {
    margin-bottom: 30px;
}

.success-content, .error-content, .confirmation-content {
    margin: 30px 0;
}

.success-message, .error-message, .main-message {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.main-message {
    margin-bottom: 40px;
}

.benefits-list, .help-section, .steps-section {
    background: rgba(248, 250, 252, 0.8);
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    margin: 20px 0;
}

.steps-section {
    padding: 30px;
    margin: 30px 0;
}

.benefits-list h3, .help-section h3, .steps-section h3 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.steps-section h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.benefits-list ul, .help-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li, .help-section li {
    color: #374151;
    font-weight: 500;
    margin-bottom: 8px;
    padding-left: 0;
}

.help-section li {
    margin-bottom: 5px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.step-number {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.step-content p {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
}

.status-message {
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.status-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.dev-section {
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
}

.dev-section h4 {
    color: #92400e;
    margin-bottom: 10px;
}

.dev-section p {
    color: #78350f;
    margin-bottom: 15px;
}

.btn-dev {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-dev:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    color: white;
    text-decoration: none;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.register-confirmation-container .action-buttons {
    margin: 40px 0 30px 0;
}

.confirmation-card .btn {
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 160px;
    justify-content: center;
}

.confirmation-card .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.confirmation-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.confirmation-card .btn-secondary {
    background: rgba(107, 114, 128, 0.1);
    color: #374151;
    border: 2px solid rgba(107, 114, 128, 0.2);
}

.confirmation-card .btn-secondary:hover {
    background: rgba(107, 114, 128, 0.2);
    transform: translateY(-2px);
    color: #374151;
    text-decoration: none;
}

.confirmation-card .btn-outline {
    background: transparent;
    color: #6b7280;
    border: 2px solid rgba(107, 114, 128, 0.3);
}

.confirmation-card .btn-outline:hover {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    text-decoration: none;
}

.help-section {
    background: rgba(239, 246, 255, 0.8);
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    margin-top: 30px;
}

.help-section h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.help-section p {
    color: #475569;
    margin-bottom: 10px;
}

.help-section ul {
    color: #6b7280;
    margin: 0;
    padding-left: 20px;
}

.help-section a {
    color: #3b82f6;
    text-decoration: none;
}

.help-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .confirmation-card {
        padding: 40px 20px;
        margin: 10px;
    }
    
    .confirmation-card h1 {
        font-size: 2rem;
    }
    
    .steps-list {
        gap: 15px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .confirmation-card .btn {
        width: 100%;
        max-width: 280px;
    }
}
