/* =========================================
   Global Variables & Base Setup
   ========================================= */
:root {
    --font-family: 'Manrope', sans-serif;
    
    /* Your exact requested colors */
    --text-main: #2D3338;
    --text-muted: #596065;
    --btn-gradient: linear-gradient(97.13deg, #25686A 0%, #145B5E 100%);
    
    /* Extracted solid accent color for icons/links based on your gradient */
    --accent-teal: #1E6264;
    
    --bg-right: #fafafa;
    --input-bg: #f4f6f8;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    background-color: var(--bg-right);
}

/* Typography Classes */
.text-main { color: var(--text-main) !important; }
.text-muted-custom { color: var(--text-muted) !important; }
.text-accent { color: var(--accent-teal) !important; }
.bg-accent { background-color: var(--accent-teal) !important; }

/* =========================================
   Layout & Panels
   ========================================= */
.left-panel {
    /* Fallback gradient if image fails to load */
    background: linear-gradient(135deg, #e3eceb 0%, #d5e1df 40%, #e8edea 100%);
    background-image: url("../../assets/images/abstract-flowing-gradients.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/* Soft overlay effect to ensure text legibility */
.left-panel::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
    z-index: 0;
}

.left-panel > * {
    position: relative;
    z-index: 1;
}

.right-panel {
    background-color: var(--bg-right);
}

/* =========================================
   Typography & Branding
   ========================================= */
.tracking-tight {
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.tracking-wide {
    letter-spacing: 1px;
    font-size: 0.7rem;
}

.brand-text {
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

/* =========================================
   Form Elements & Card
   ========================================= */
.auth-card {
    border-radius: 28px !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.06) !important;
}

/* Input Fields */
.custom-input-group {
    background-color: var(--input-bg);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.custom-input-group:focus-within {
    border-color: rgba(30, 98, 100, 0.3);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(30, 98, 100, 0.05);
}

.custom-input-group input::placeholder {
    color: #a0abb5;
    font-weight: 500;
}

/* Button */
.btn-gradient {
    background: var(--btn-gradient);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-gradient:hover, .btn-gradient:focus {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(30, 98, 100, 0.25) !important;
}

/* =========================================
   Icons & Links
   ========================================= */
.feature-icon {
    width: 44px;
    height: 44px;
}

.nav-link-custom {
    transition: color 0.2s ease;
}

.nav-link-custom:hover, .hover-dark:hover {
    color: var(--text-main) !important;
}

.transition-all {
    transition: all 0.2s ease;
}