/* ============================================
   ROGHOST LOGIN PAGE - Dark Theme
   Matching startsite.css Design System
   ============================================ */

:root {
    /* Color Palette from startsite.css */
    --primary-bg: #0a0e13;
    --secondary-bg: #0f1419;
    --card-bg: #161d25;
    --accent-green: #00d98a;
    --accent-green-dark: #00b872;
    --accent-green-darker: #009959;
    --accent-green-glow: rgba(0, 217, 138, 0.4);
    --text-primary: #e4e8ed;
    --text-secondary: #8a98a8;
    --text-muted: #5a6875;
    --border-color: #1f2830;
    --border-color-light: #2a3440;
    --hover-bg: #1d2530;
    --error-color: #ff4757;
    --error-bg: rgba(255, 71, 87, 0.1);
    
    /* Shadows & Effects */
    --neon-glow: 0 0 15px rgba(0, 217, 138, 0.4), 0 0 30px rgba(0, 217, 138, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    
    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    /* Spacing variables for header/footer */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
}

/* ============================================
   BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--primary-bg);
    background-image: 
        radial-gradient(ellipse at 20% 10%, rgba(0, 217, 138, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(0, 217, 138, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, var(--primary-bg) 0%, #080c11 100%);
    color: var(--text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   HEADER & NAVIGATION (from startsite.css)
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 19, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    animation: logoGlow 10s ease-in-out infinite;
}

.nav-logo:hover {
    transform: translateY(-1px);
    color: var(--accent-green);
}

/* ROGHOST Name Blinken Animation */
@keyframes logoGlow {
    0%, 90% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        opacity: 1;
    }
    95% {
        text-shadow: 0 0 20px rgba(0, 217, 138, 0.8), 0 0 30px rgba(0, 217, 138, 0.6);
        opacity: 0.9;
    }
    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        opacity: 1;
    }
}

.nav-logo .logo-icon {
    font-size: 1.8rem;
    animation: rocketFloat 4s ease-in-out infinite;
}

/* Raketen Animation - sanftes auf und ab schweben */
@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-menu .btn-primary {
    background: linear-gradient(135deg, var(--accent-green), #00b377);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 217, 138, 0.3);
}

.nav-menu .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 217, 138, 0.5);
    background: linear-gradient(135deg, #00e699, #00d98a);
}

/* Legacy support for old header structure */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 19, 0.7);
    backdrop-filter: blur(30px) saturate(200%);
    border-bottom: 1px solid rgba(0, 217, 138, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 0.25rem 0;
}

header.scrolled {
    background: rgba(10, 14, 19, 0.9);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 217, 138, 0.15);
    border-bottom-color: rgba(0, 217, 138, 0.2);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 10px rgba(0, 217, 138, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: logoGlow 10s ease-in-out infinite;
}

.logo:hover {
    transform: translateY(-1px);
    text-shadow: 0 0 15px rgba(0, 217, 138, 0.5);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

/* Rakete im Legacy-Logo */
.logo .logo-icon {
    display: inline-block;
    animation: rocketFloat 4s ease-in-out infinite;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-green);
    background: rgba(0, 217, 138, 0.05);
}

.nav-links a:hover::after {
    width: 80%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-green);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header {
        padding: 0.75rem 0;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .nav-logo {
        font-size: 1.25rem;
    }
    
    .nav-logo .logo-icon {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .nav-menu .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Legacy mobile support */
    nav {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    body.login-page {
        padding-top: 80px;
    }
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: rgba(10, 14, 19, 0.95);
    border-top: 1px solid rgba(0, 217, 138, 0.2);
    padding: 3rem 2rem 1.5rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    opacity: 0.5;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-green);
    border-radius: 2px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all var(--transition-normal);
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

.footer-section a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    opacity: 0;
    transition: all var(--transition-normal);
}

.footer-section a:hover {
    color: var(--accent-green);
    padding-left: 20px;
    transform: translateX(3px);
}

.footer-section a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.3);
    user-select: none;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all var(--transition-normal);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    position: relative;
}

.footer-bottom a:hover {
    color: var(--accent-green);
    background: rgba(0, 217, 138, 0.1);
    transform: translateY(-2px);
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transform: translateX(-50%);
    transition: width var(--transition-normal);
}

.footer-bottom a:hover::after {
    width: 80%;
}

/* Mobile Footer Links */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .footer-links .separator {
        display: none;
    }
    
    .footer-bottom a {
        padding: 0.4rem 1rem;
        width: 100%;
        text-align: center;
    }
}

body.login-page {
    padding-top: 80px;
    padding-bottom: 3rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

/* Login Page Footer Override */
body.login-page footer {
    width: 100%;
    flex-shrink: 0;
}

body.login-page .footer-content {
    max-width: 100%;
    padding: 0 var(--spacing-md);
}

body.login-page .footer-bottom {
    max-width: 100%;
}

/* Mobile Menu Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--secondary-bg);
        flex-direction: column;
        padding: var(--spacing-md);
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition-normal);
        pointer-events: none;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */

.login-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 138, 0.15) 0%, rgba(0, 217, 138, 0.08) 40%, transparent 70%);
    animation: float 25s infinite ease-in-out, pulse 8s infinite ease-in-out;
    filter: blur(100px);
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.bg-circle:nth-child(1) {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.bg-circle:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    animation-delay: 8s;
}

.bg-circle:nth-child(3) {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 16s;
}

/* ============================================
   LOGIN CONTAINER
   ============================================ */

.login-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    width: 100%;
    min-height: 580px;
    background: rgba(22, 29, 37, 0.8);
    backdrop-filter: blur(30px) saturate(200%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 217, 138, 0.15);
    border: 1px solid rgba(0, 217, 138, 0.1);
    margin: 3rem auto;
    gap: 0;
}

/* ============================================
   LOGIN CARD
   ============================================ */

.login-card {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 217, 138, 0.3);
    display: inline-block;
}

.login-header h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.login-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   ERROR MESSAGE
   ============================================ */

.error-message {
    background: var(--error-bg);
    border: 1px solid var(--error-color);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--error-color);
    font-size: 0.9rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-message svg {
    flex-shrink: 0;
}

/* ============================================
   FORM STYLES
   ============================================ */

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: color var(--transition-fast);
}

.input-wrapper input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: var(--secondary-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all var(--transition-normal);
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--accent-green);
    background: var(--card-bg);
    box-shadow: 0 0 0 3px rgba(0, 217, 138, 0.1);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper:focus-within .input-icon {
    color: var(--accent-green);
}

/* Toggle Password Button */
.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}

.toggle-password:hover {
    color: var(--accent-green);
}

.toggle-password svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   FORM OPTIONS
   ============================================ */

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.remember-me input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color-light);
    border-radius: 5px;
    background: var(--secondary-bg);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checkmark::after {
    content: '';
    display: none;
    width: 6px;
    height: 10px;
    border: solid var(--primary-bg);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.remember-me input[type="checkbox"]:checked ~ .checkmark {
    background: var(--accent-green);
    border-color: var(--accent-green);
    box-shadow: 0 0 10px rgba(0, 217, 138, 0.3);
}

.remember-me input[type="checkbox"]:checked ~ .checkmark::after {
    display: block;
}

.forgot-password {
    color: var(--accent-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.forgot-password:hover {
    color: var(--accent-green-dark);
    text-decoration: underline;
}

/* ============================================
   LOGIN BUTTON
   ============================================ */

.btn-login {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
    color: var(--primary-bg);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(0, 217, 138, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-login:hover::before {
    left: 100%;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 138, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn-login:hover .btn-arrow {
    transform: translateX(3px);
}

/* Loading State */
.btn-login.loading .btn-text {
    opacity: 0;
}

.btn-login.loading .btn-arrow {
    display: none;
}

.btn-login.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(10, 14, 19, 0.3);
    border-top-color: var(--primary-bg);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   LOGIN FOOTER
   ============================================ */

.login-footer {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.login-footer a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.login-footer a:hover {
    color: var(--accent-green-dark);
    text-decoration: underline;
}

/* ============================================
   INFO PANEL
   ============================================ */

.info-panel {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content {
    max-width: 400px;
}

.info-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.info-content > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: transparent;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 217, 138, 0.15);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    background: rgba(0, 217, 138, 0.03);
    border-color: var(--accent-green);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 217, 138, 0.1);
}

.feature-item svg {
    flex-shrink: 0;
    color: var(--accent-green);
    width: 28px;
    height: 28px;
    margin-top: 0;
    padding: 6px;
    background: rgba(0, 217, 138, 0.1);
    border-radius: 8px;
}

.feature-item div {
    flex: 1;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .login-container {
        margin: 1.5rem;
    }
}

@media (max-width: 1024px) {
    body.login-page {
        padding-top: 70px;
    }
    
    .login-container {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 1rem;
    }
    
    .info-panel {
        display: none;
    }
}

@media (max-width: 768px) {
    body.login-page {
        padding-top: 60px;
        padding-bottom: 1rem;
    }
    
    .login-container {
        margin: 1rem 0.75rem;
        min-height: auto;
    }
    
    .login-card {
        padding: 2rem 1.5rem;
    }
    
    .login-header h1 {
        font-size: 1.6rem;
    }
    
    .login-logo {
        font-size: 1.8rem;
    }
}

@media (max-width: 640px) {
    .login-container {
        margin: 0.75rem 0.5rem;
    }
    
    .login-card {
        padding: 1.75rem 1.25rem;
    }
    
    .login-header h1 {
        font-size: 1.5rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .input-wrapper input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (max-width: 480px) {
    body.login-page {
        padding-top: 70px;
    }
    
    .login-card {
        padding: 1.5rem 1rem;
    }
    
    .login-logo {
        font-size: 1.5rem;
    }
    
    .login-header h1 {
        font-size: 1.4rem;
    }
    
    .login-header p {
        font-size: 0.9rem;
    }
}

@media (max-width: 380px) {
    .login-container {
        margin: 0.5rem;
    }
    
    .login-card {
        padding: 1.25rem 0.875rem;
    }
    
    .login-header {
        margin-bottom: 1.5rem;
    }
    
    .login-logo {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .input-wrapper input {
        padding: 0.75rem 0.875rem 0.75rem 2.75rem;
    }
}
