@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --primary-color: #D93F42;
    --primary-hover: #c93033;
    --text-dark: #1F2937;
    --text-muted: #6B7280;
    --border-color: #E5E7EB;
    --bg-light: #FFFEFE;
    --primary-font: "Roboto";
    --secondary-font: "Inter";
    --sidebar-width: 276px;
}

body {
    font-family: var(--primary-font), sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.fs-11px {
    font-size: 11px;
}
.fs-12px {
    font-size: 12px;
}
.fs-14px {
    font-size: 14px;
}
.fs-16px {
    font-size: 16px;
}
.fs-18px {
    font-size: 18px;
}
.fs-20px {
    font-size: 20px;
}
.fs-22px{
    font-size: 22px;
}
.fs-24px{
    font-size: 24px;
}
.fs-26px{
    font-size: 26px;
}
.fs-28px{
    font-size: 28px;
}









h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.text-primary-custom {
    color: var(--primary-color);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 20px;
    border-radius: 200px;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
}

.btn-outline-custom {
    background-color: white;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-outline-custom:hover {
    background-color: #f3f4f6;
    color: var(--text-dark);
    border-color: #d1d5db;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 200px;
    border-color: var(--border-color);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(217, 63, 66, 0.1);
}

.form-label {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 11px;
}

/* Auth Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
}

.auth-left {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.auth-right {
    background-size: cover;
    background-position: center;
    min-height: max(100vh,100%);
}

.auth-logo {
    margin-bottom: 3rem;
    max-width: 150px;
}

.social-btn-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Dashboard Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background-color: white;
    border-right: 1px solid var(--border-color);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
}

.logo {
    padding: 28px 64px 41px;
    text-align: center;
}

.sidebar-menu {
    flex: 1;
    padding: 0 1rem;
}

.nav-link {
    color: var(--text-dark);
    padding: 4px;
    border-radius: 0.5rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.nav-link:hover {
    background-color: #f3f4f6;
    color: var(--text-dark);
}

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

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

.sidebar-footer {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Submenu Styles */
.submenu-link {
    font-size: 14px;
    padding-left: 2.75rem; /* Indent to align with text of parent */
    color: var(--text-dark);
    font-weight: 400;
}

.submenu-link:hover {
    background-color: #f3f4f6;
    color: var(--text-dark);
}

.submenu-link.active-submenu {
    background-color: #FFEDED;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 10px;
}

.transition-icon {
    transition: transform 0.3s ease;
}

/* Rotate icon when expanded */
.nav-link[aria-expanded="true"] .transition-icon {
    transform: rotate(180deg);
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-wrapper {
    padding: 2rem;
}

/* Stepper */
.stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 20px; /* Adjust based on circle size */
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border-color);
    z-index: 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    background-color: var(--bg-light); /* Hide line behind */
    padding: 0 0.5rem;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.step-item.active .step-circle {
    background-color: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.step-item.active .step-label {
    color: var(--text-dark);
    font-weight: 600;
}

/* Card custom */
.card-custom {
    background-color: white;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    padding: 2rem;
}

/* Form inputs with groups */
.input-group-text {
    background-color: white;
    border-color: var(--border-color);
    border-radius: 0 1rem 1rem 0;
}

.input-group .form-control {
    border-radius: 1rem 0 0 1rem;
}

.form-select {
    border-radius: 1rem;
}
