/* Ziraai SSI Platform Custom Theme */

/* Override body background for sky blue theme */
body {
    background: linear-gradient(135deg, #0e9be2, #5bb3e8) !important;
    min-height: 100vh;
}

/* Remove auth-main layout constraints */
#wrapper {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Navigation styling to match original theme */
.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    margin-bottom: 0;
}

.navbar .navbar-brand {
    color: #fff !important;
    font-weight: bold;
}

.navbar .navbar-text {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
}

/* Hero section with proper separator */
.hero-section {
    color: white;
    text-align: center;
    padding: 3rem 0 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    margin-bottom: 2rem;
}

.hero-section h1 {
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Card styling consistent with theme */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Button styling for blue theme */
.btn-primary {
    background-color: #0e9be2;
    border-color: #0e9be2;
}

.btn-primary:hover {
    background-color: #0c87c9;
    border-color: #0c87c9;
}

.btn-success {
    background-color: #0e9be2;
    border-color: #0e9be2;
}

.btn-success:hover {
    background-color: #0c87c9;
    border-color: #0c87c9;
}

/* Form styling for registration page */
.form-control:focus {
    border-color: #0e9be2;
    box-shadow: 0 0 0 0.2rem rgba(14, 155, 226, 0.25);
}

/* Step indicator styling */
.step-indicator {
    display: flex;
    margin-bottom: 2rem;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding-bottom: 2rem;
}

.step {
    display: flex;
    align-items: center;
    margin: 0 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.step.active {
    color: #fff;
    font-weight: bold;
}

.step.completed {
    color: rgba(255, 255, 255, 0.8);
}

.step-number {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.step.active .step-number {
    background: rgba(255, 255, 255, 0.9);
    color: #0e9be2;
}

.step.completed .step-number {
    background: rgba(255, 255, 255, 0.7);
    color: #0e9be2;
}

/* Upload area styling */
.upload-area {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.upload-area:hover {
    border-color: #0e9be2;
}

.upload-area.dragover {
    border-color: #0e9be2;
    background: rgba(14, 155, 226, 0.1);
}

/* Section headers */
.section-header {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #0e9be2;
}

/* Additional classes for consistent styling */
.text-large {
    font-size: 4rem;
}

.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-group {
    margin-bottom: 1rem;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .text-large {
        font-size: 2.5rem;
    }
    .hero-section {
        padding: 2rem 0 1.5rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem !important;
    }
    
    .hero-section .lead {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .step-indicator {
        flex-direction: column;
        align-items: center;
        padding-bottom: 1rem;
    }
    
    .step {
        margin: 0.5rem 0;
    }
    
    .navbar-text {
        font-size: 0.8rem !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-section .lead {
        font-size: 0.9rem;
        margin-bottom: 1rem !important;
    }
    
    .text-large {
        font-size: 2rem;
    }
    
    .navbar-text {
        display: none; /* Hide on very small screens */
    }
    
    .step-indicator {
        margin-bottom: 1rem;
    }
    
    .step {
        font-size: 0.9rem;
    }
}
