/* Get Started Wizard Styles */

#wizardContainer {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Input field styles */
#wizardContainer input[type="text"],
#wizardContainer input[type="email"],
#wizardContainer input[type="password"] {
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

#wizardContainer input[type="text"]:focus,
#wizardContainer input[type="email"]:focus,
#wizardContainer input[type="password"]:focus {
    outline: none;
    border-color: #3498db;
}

/* Button hover effects */
#wizardContainer button {
    transition: all 0.3s ease;
}

/* Step transitions */
[id^="wizardStep"] {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateX(20px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* Welcome Back panel sections */
.wb-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
}

.wb-section-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #2c3e50;
}

.wb-section-desc {
    margin: 0 0 12px 0;
    color: #666;
    font-size: 14px;
}

/* Social login buttons */
.social-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
}

.social-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.social-btn:active {
    transform: translateY(0);
}

.social-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.25);
    border-radius: 4px;
    font-weight: bold;
    font-size: 15px;
}

/* Forgot password section */
#forgotPasswordSection {
    border-left-color: #e67e22;
}

#socialLoginSection {
    border-left-color: #27ae60;
}

/* Reset code button */
.btn-reset-code {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(230, 126, 34, 0.3);
}

.btn-reset-code:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
}

.btn-reset-code:active {
    transform: translateY(0);
}

/* Back / different email button */
.btn-back {
    background: none;
    border: 2px solid #bdc3c7;
    color: #7f8c8d;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-back:hover {
    border-color: #95a5a6;
    color: #555;
    background: #f8f9fa;
}

/* Success animation */
#wizardStep3 h1 {
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

