/* ========================================
   TRÉSOR CAPITAL - Complete Styles
   ======================================== */

:root {
    --deep-violet: #2d1b69;
    --bright-teal: #00d4ff;
    --chalk-grey: #f0f0f0;
    --dark-violet: #1a0f3e;
    --white: #ffffff;
    --success-green: #00c853;
    --danger-red: #ff1744;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--chalk-grey);
    color: #333;
}

/* Login & Register Pages */
.login-page, .register-page {
    background: linear-gradient(135deg, var(--deep-violet), var(--dark-violet));
    min-height: 100vh;
}

.login-card {
    border: none;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Buttons */
.btn-primary {
    background-color: var(--deep-violet);
    border-color: var(--deep-violet);
    color: var(--white);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--bright-teal);
    border-color: var(--bright-teal);
    color: var(--deep-violet);
}

.btn-primary:active {
    background-color: var(--bright-teal) !important;
    border-color: var(--bright-teal) !important;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Form Controls */
.form-control:focus {
    border-color: var(--bright-teal);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

/* Alerts */
.alert {
    border: none;
    border-radius: 10px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

/* Badges */
.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--chalk-grey);
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--deep-violet);
    color: var(--white);
}

.step.completed .step-number {
    background: var(--success-green);
    color: var(--white);
}

.step-label {
    font-size: 12px;
    margin-top: 5px;
    color: #666;
}

.step.active .step-label {
    color: var(--deep-violet);
    font-weight: bold;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #ddd;
    margin: 0 10px;
}

.step-line.completed {
    background: var(--success-green);
}

/* Sidebar */
.sidebar .nav-link {
    padding: 10px 20px;
    border-radius: 8px;
    margin: 2px 10px;
    transition: all 0.3s;
}

.sidebar .nav-link:hover {
    background-color: rgba(0, 212, 255, 0.1);
    color: #00d4ff !important;
}

.sidebar .nav-link.active {
    background-color: rgba(0, 212, 255, 0.2);
    color: #00d4ff !important;
}

.sidebar .nav-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .step-label {
        font-size: 10px;
    }
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--chalk-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--deep-violet);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bright-teal);
}