:root {
    --primary: #2e7d32;
    --primary-light: #60ad5e;
    --primary-dark: #005005;
    --secondary: #795548;
    --secondary-light: #a98274;
    --secondary-dark: #4b2c20;
    --accent: #ff8f00;
    --accent-light: #ffc046;
    --accent-dark: #c56000;
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
    --success-light: #e8f5e9;
    --warning-light: #fff8e1;
    --danger-light: #ffebee;
    --info-light: #e3f2fd;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    height: 100%;
    z-index: -1;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-dark) !important;
    font-size: 1.5rem;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-google {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 100%;
    gap: 0.5rem;
}
.card {
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.form-control,
.form-select {
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #555;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

.onboarding-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    color: #777;
}

.step-title {
    font-size: 0.85rem;
    color: #777;
    text-align: center;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.3);
}

.step.active .step-title {
    color: var(--primary);
    font-weight: 600;
}

.step.completed .step-number {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.role-card {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.role-card:hover {
    transform: translateY(-5px);
}

.role-card.selected {
    border-color: var(--primary);
    background-color: var(--success-light);
}

.role-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.role-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.role-icon .material-icons {
    font-size: 40px;
    color: white;
}

.preference-item {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.preference-item:hover {
    transform: translateX(5px);
}

.preference-item .material-icons {
    color: var(--primary);
    margin-right: 0.5rem;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-link {
    color: var(--primary);
}

.tag {
    background-color: var(--light-bg);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--primary-light);
    color: white;
}

.tag .material-icons {
    font-size: 16px;
    margin-left: 0.25rem;
    cursor: pointer;
}

.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse 2s infinite;
}

.success-icon .material-icons {
    font-size: 60px;
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(46, 125, 50, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0);
    }
}

.footer {
    margin-top: auto;
    padding: 1.5rem 0;
    background-color: #fff;
    border-top: 1px solid var(--border-color);
}

.nav-pills .nav-link.active {
    background-color: var(--primary);
}

.nav-pills .nav-link {
    color: #555;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover:not(.active) {
    background-color: var(--light-bg);
}

.form-floating>.form-control {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating>label {
    padding: 1rem 0.75rem;
}

.chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    background-color: var(--light-bg);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.chip:hover {
    background-color: var(--primary-light);
    color: white;
}

.chip.selected {
    background-color: var(--primary);
    color: white;
}

.chip .material-icons {
    font-size: 16px;
    margin-right: 0.25rem;
}

@media (max-width: 767.98px) {
    .step-indicator {
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .step {
        min-width: 100px;
    }

    .step-title {
        font-size: 0.75rem;
    }
}