:root {
    --primary-color: #1a73e8;
    --secondary-color: #0d1b2a;
    --accent-color: #4CC9F0;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F8FAFC;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navbar Customization */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 15px;
    font-size: 15px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Common UI Elements */
.section-tag {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 115, 232, 0.1);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Info Page Specific Layout */
.info-page-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid #F1F5F9;
    background-color: white;
}

.footer-logo {
    max-height: 40px;
    margin-bottom: 25px;
}

.footer-links h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.btn-primary-custom {
    background-color: #1a73e8;
    border-color: #1a73e8;
    color: white;
}
.btn-primary-custom:hover {
    background-color: #1557b0;
    border-color: #1557b0;
    color: white;
}

/* Password Toggle Styles */
.password-field-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
}

.input-group .password-toggle {
    right: 10px;
}

.password-toggle:hover {
    color: #495057;
}

.password-field-container .form-control {
    padding-right: 45px !important;
}
