:root {
    --bg-dark: #050505;
    --bg-card: #121212;
    --primary: #00f3ff;
    --primary-dim: #00f3ff40;
    --secondary: #ffbd00;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --gradient-main: linear-gradient(90deg, #00f3ff 0%, #0066ff 100%);
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --nav-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

/* Login Screen */
.login-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-content {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-logo {
    margin-bottom: 40px;
}

.login-logo i {
    width: 60px;
    height: 60px;
    color: var(--primary);
    margin-bottom: 10px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
    position: relative;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    padding: 15px;
    padding-right: 45px;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: var(--primary);
}

.password-toggle {
    position: absolute;
    right: 15px;
    bottom: 15px;
    color: var(--text-muted);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.password-toggle:hover {
    color: var(--primary);
}

.btn-login {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
}

.error-msg {
    color: #ff4d4d;
    font-size: 0.9rem;
    margin-bottom: 15px;
    min-height: 20px;
}

/* App Content */
#app-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.app-header {
    padding: 20px;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--primary);
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

/* App Container */
.app-container {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: calc(var(--nav-height) + 20px);
}

/* Tabs Content */
.tab-content {
    display: none;
    padding: 20px;
    animation: fadeIn 0.3s ease;
    padding-bottom: 100px;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Module Header */
.module-header {
    margin-bottom: 20px;
}

.module-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.module-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Resource Cards */
.resource-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.resource-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 243, 255, 0.2);
    border-color: var(--primary);
}

.resource-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
    transition: 0.3s;
}

.resource-card:hover .resource-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--primary));
}

.resource-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.resource-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.btn-open,
.btn-download {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-open {
    background: var(--primary);
    color: #000;
    border: none;
}

.btn-open:hover {
    background: #fff;
    box-shadow: 0 0 15px var(--primary-dim);
    transform: scale(1.02);
}

.btn-download {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-download:hover {
    background: var(--primary-dim);
    color: #fff;
    transform: scale(1.02);
}

/* Locked Resource Styles */
.resource-card.locked {
    filter: none;
    opacity: 1;
    cursor: pointer;
    border-color: rgba(0, 243, 255, 0.3);
}

.resource-card.locked .resource-icon {
    color: var(--primary);
    opacity: 0.5;
}

.resource-card.locked .resource-title {
    color: var(--primary);
}

.resource-card.locked .resource-desc {
    color: var(--primary-dim);
}

.resource-card.locked .btn-open,
.resource-card.locked .btn-download {
    opacity: 0.5;
    pointer-events: none;
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.resource-card.locked .lock-overlay {
    display: flex;
}

.lock-overlay i {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 5px;
}

.premium-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Tips List */
.tips-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.person-tip-card {
    background: #111;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #222;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: 0.3s;
}

.person-tip-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.person-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--primary);
}

.person-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-content {
    flex: 1;
}

.person-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.person-text {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.4;
    font-style: italic;
}

/* Video Carousel */
.video-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    align-items: flex-start;
}

.video-carousel::-webkit-scrollbar {
    display: none;
}

.video-card {
    min-width: 90%;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    scroll-snap-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
    border-bottom: 1px solid #333;
    flex-shrink: 0;
}

.video-wrapper iframe,
.video-wrapper>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #fff;
}

/* Topic List */
.topic-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topic-number {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.topic-text {
    font-size: 0.95rem;
    color: #ddd;
    font-weight: 500;
}

.btn-action {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
    margin-top: auto;
    transition: 0.3s;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding-bottom: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #444;
    border-radius: 50%;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 10px;
}

/* Continue Watching Items */
.continue-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.continue-item {
    display: flex;
    gap: 15px;
    background: #111;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #222;
    align-items: center;
    transition: 0.3s;
    cursor: pointer;
}

.continue-item:hover {
    border-color: var(--primary);
}

.continue-thumb {
    width: 120px;
    height: 70px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.continue-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.continue-info {
    flex: 1;
    overflow: hidden;
}

.continue-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

.progress-bar {
    height: 4px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    width: 0%;
    box-shadow: 0 0 10px var(--primary);
}

.check-icon {
    color: #333;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.check-icon.completed {
    color: var(--primary);
}

/* Settings */
.settings-group {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.setting-item {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-label {
    font-size: 1rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    gap: 5px;
    padding: 10px;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.nav-item.active {
    color: var(--primary);
}

.nav-item i {
    width: 24px;
    height: 24px;
}

/* Upgrade Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px var(--primary-dim);
}

.popup-icon i {
    width: 60px;
    height: 60px;
    color: var(--primary);
    margin-bottom: 20px;
}

.popup-content h3 {
    margin-bottom: 15px;
    color: #fff;
}

.popup-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-upgrade-popup {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 15px;
    transition: 0.3s;
}

.btn-upgrade-popup:hover {
    background: #fff;
    box-shadow: 0 0 20px var(--primary-dim);
}

.btn-close-text {
    background: transparent;
    border: none;
    gap: 8px;
    background: rgba(0, 243, 255, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    letter-spacing: 1px;
}

.teaser-badge i {
    width: 16px;
    height: 16px;
}

.teaser-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.teaser-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Clean Price Box */
.teaser-price-box {
    margin-top: 30px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.price-header {
    margin-bottom: 10px;
}

.price-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 400;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.price-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
    opacity: 0.8;
}

.btn-upgrade-pulse {
    background: var(--primary);
    color: #000;
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0, 243, 255, 0.2);
}

.btn-upgrade-pulse:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 243, 255, 0.3);
}

/* Teaser Video Grid */
.teaser-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    padding: 0 20px;
    margin-bottom: 30px;
}

.teaser-video-card {
    background: #151515;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
    opacity: 0.7;
    transition: 0.3s;
}

.teaser-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    background: #000;
}

.teaser-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.teaser-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.teaser-overlay i {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.teaser-video-title {
    padding: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Benefits List */
.teaser-benefits {
    padding: 0 20px;
    margin-bottom: 40px;
}

.benefits-title {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid var(--primary);
}

.benefits-grid {
    display: grid;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item i {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.benefit-item span {
    color: #ddd;
    font-size: 0.95rem;
} 
 
/* Hero Video Thumbnail */
.teaser-hero-video {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.teaser-hero-video img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.7);
}

.teaser-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.teaser-hero-overlay i {
    width: 60px;
    height: 60px;
    color: var(--primary);
    filter: drop-shadow(0 0 20px var(--primary));
}

/* Highlight First Benefit */
.benefit-item.benefit-highlight {
    background: rgba(0, 243, 255, 0.08);
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.benefit-item.benefit-highlight i {
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary));
}

.benefit-item.benefit-highlight span {
    color: #fff;
    font-weight: 600;
}

/* Add spacing between button and benefits */
.teaser-benefits {
    padding: 0 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* ========================================
   MODERN LOGIN SCREEN STYLES
   ======================================== */

.login-screen {
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 50%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.login-screen::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    animation: pulse 8s ease-in-out infinite;
}

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

.login-container {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

/* Brand Section */
.login-brand {
    text-align: center;
    margin-bottom: 40px;
}

.brand-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #0099ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.3);
}

.brand-icon i {
    width: 40px;
    height: 40px;
    color: #000;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.brand-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.brand-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Login Card */
.login-card {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    font-family: var(--font-heading);
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

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

.input-icon {
    position: absolute;
    left: 15px;
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    z-index: 1;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.input-wrapper input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.1);
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.password-toggle {
    position: absolute;
    right: 15px;
    cursor: pointer;
    z-index: 1;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

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

/* Primary Login Button */
.btn-login-primary {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #0099ff 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 4px 20px rgba(0, 243, 255, 0.3);
}

.btn-login-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 243, 255, 0.4);
}

.btn-login-primary i {
    width: 20px;
    height: 20px;
}

/* Credentials Helper */
.credentials-helper {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
}

.credentials-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credentials-info {
    margin-bottom: 15px;
}

.credentials-info p {
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 6px;
}

.credentials-info strong {
    color: var(--primary);
    font-weight: 600;
}

.credentials-info span {
    color: #fff;
    font-family: 'Courier New', monospace;
}

.btn-autofill {
    width: 100%;
    padding: 12px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-autofill:hover {
    background: rgba(0, 243, 255, 0.15);
    transform: translateY(-1px);
}

.btn-autofill i {
    width: 18px;
    height: 18px;
}

/* Help Link */
.login-help {
    margin-top: 20px;
    text-align: center;
}

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

.login-help a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.login-help a:hover {
    color: #fff;
}

/* Footer Message */
.login-footer {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 243, 255, 0.05);
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.login-footer i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.login-footer p {
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.5;
    margin: 0;
}
