:root {
    --bg-primary: #07101c;
    --bg-secondary: #0d1829;
    --bg-card: #1a2332;
    --text-primary: #FFFFFF;
    --text-secondary: #a0a4b8;
    --accent-teal: #14b8a6;
    --accent-emerald: #10b981;
    --accent-cyan: #4AEAF5;
    --border-color: rgba(20, 184, 166, 0.2);
    --border-glow: rgba(20, 184, 166, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* Space background glows - Teal theme */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Animated background orbs */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(20, 184, 166, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.12) 0%, transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(20, 184, 166, 0.1) 0%, transparent 35%);
    animation: float-orbs 15s ease-in-out infinite;
}

@keyframes float-orbs {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes float-glow {
    0%, 100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1) translateY(-15px);
    }
}

.demo-container {
    max-width: 1600px;
    width: 100%;
    background: rgba(13, 24, 41, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 1px 0 rgba(20, 184, 166, 0.2);
    border: 2px solid var(--border-color);
    position: relative;
    z-index: 1;
}

/* Header */
.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(13, 24, 41, 0.4);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-emerald));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px rgba(20, 184, 166, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(20, 184, 166, 0.4);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
    box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.logo-icon svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.logo h1 {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(209, 250, 245, 1);
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(209, 250, 245, 0.9);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-teal);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 10px var(--accent-teal);
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 20px var(--accent-teal);
        opacity: 0.7;
    }
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    padding: 40px;
    align-items: start;
}

/* Chat Panel */
.chat-panel {
    background: rgba(26, 35, 50, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 40px rgba(20, 184, 166, 0.2);
    width: 100%;
    max-width: 100%;
    height: 650px;
    max-height: 650px;
    min-height: 650px;
    align-self: stretch;
}

.chat-messages {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Custom scrollbar for chat messages */
.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(26, 35, 50, 0.3);
    border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(20, 184, 166, 0.3);
    border-radius: 4px;
    transition: background 0.2s;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(20, 184, 166, 0.5);
}

.message {
    display: flex;
    gap: 12px;
    animation: fadeIn 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(20, 184, 166, 0.4);
}

.bot-avatar {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-emerald));
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.5);
}

.user-avatar {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.8), rgba(26, 35, 50, 0.6));
    border-color: rgba(20, 184, 166, 0.3);
}

.message-avatar svg {
    width: 20px;
    height: 20px;
    color: white;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
}

.message-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 70%;
    width: 100%;
}

.user-message .message-wrapper {
    align-items: flex-end;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid;
    transition: all 0.3s;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.bot-bubble {
    background: rgba(26, 35, 50, 0.6);
    border-color: rgba(20, 184, 166, 0.3);
    color: rgba(209, 250, 245, 1);
}

.user-bubble {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9), rgba(16, 185, 129, 0.9));
    border-color: rgba(20, 184, 166, 0.4);
    color: white;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.message-bubble p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Message content formatting */
.message-content {
    font-size: 0.9rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.message-content strong {
    font-weight: 600;
    color: inherit;
}

.message-content em {
    font-style: italic;
    opacity: 0.95;
}

.message-content br {
    display: block;
    content: "";
    margin: 0.3em 0;
}

.bullet-point,
.numbered-point {
    display: block;
    margin: 0.4em 0;
    padding-left: 0.5em;
}

.bullet-point {
    text-indent: -0.5em;
}

.numbered-point {
    font-weight: 500;
}

/* Clickable links in chat */
.chat-link {
    color: rgba(94, 234, 212, 1);
    text-decoration: none;
    border-bottom: 1px solid rgba(94, 234, 212, 0.4);
    transition: all 0.2s;
    font-weight: 500;
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

.chat-link:hover {
    color: rgba(20, 184, 166, 1);
    border-bottom-color: rgba(20, 184, 166, 0.8);
    text-shadow: 0 0 8px rgba(20, 184, 166, 0.3);
}

.user-bubble .chat-link {
    color: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.user-bubble .chat-link:hover {
    color: white;
    border-bottom-color: white;
}

.message-time {
    font-size: 0.7rem;
    color: rgba(94, 234, 212, 0.6);
    padding: 0 8px;
}

.quick-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
    width: 100%;
    box-sizing: border-box;
}

.option-btn {
    padding: 6px 14px;
    background: rgba(20, 184, 166, 0.2);
    border: 1px solid rgba(20, 184, 166, 0.4);
    border-radius: 20px;
    color: rgba(209, 250, 245, 1);
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.option-btn:hover {
    background: rgba(20, 184, 166, 0.35);
    border-color: rgba(20, 184, 166, 0.6);
    transform: translateY(-2px);
}

.typing-indicator {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(26, 35, 50, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 16px;
    width: fit-content;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-teal);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    30% {
        opacity: 1;
        transform: scale(1);
    }
}

.chat-input {
    padding: 20px;
    border-top: 2px solid var(--border-color);
    background: rgba(13, 24, 41, 0.4);
    backdrop-filter: blur(15px);
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 12px 18px;
    background: rgba(26, 35, 50, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 8px;
    color: rgba(209, 250, 245, 1);
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: all 0.2s;
}

.chat-input input:focus {
    border-color: rgba(20, 184, 166, 0.6);
    background: rgba(26, 35, 50, 0.8);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.chat-input input::placeholder {
    color: rgba(94, 234, 212, 0.4);
}

.send-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-emerald));
    border: 2px solid rgba(20, 184, 166, 0.4);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}

.send-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(20, 184, 166, 1), rgba(16, 185, 129, 1));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.6);
}

.send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.send-btn svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
}

.send-btn:hover {
    box-shadow: 0 0 20px rgba(153, 74, 245, 0.6);
    transform: scale(1.05);
}

/* Features Panel */
.features-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: 650px;
    max-height: 650px;
    min-height: 650px;
    justify-content: flex-start;
    align-self: stretch;
}

.feature-card {
    background: rgba(26, 35, 50, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 18px;
    transition: all 0.3s;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateX(-4px);
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.2);
    border-color: rgba(20, 184, 166, 0.4);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.vector-icon {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(20, 184, 166, 0.1));
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.calendar-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.ai-icon {
    background: linear-gradient(135deg, rgba(74, 234, 245, 0.2), rgba(74, 234, 245, 0.1));
    border: 1px solid rgba(74, 234, 245, 0.3);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
}

.feature-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: rgba(209, 250, 245, 1);
}

.feature-card p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 10px;
}

.feature-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(20, 184, 166, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-teal);
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.demo-footer {
    padding: 30px 40px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.tech-stack {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.tech-badge {
    padding: 6px 14px;
    background: rgba(74, 234, 245, 0.1);
    border: 1px solid var(--accent-cyan);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-cyan);
}

.demo-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Responsive */
@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .chat-panel {
        height: 600px;
        max-height: 600px;
        min-height: 600px;
    }
    
    .features-panel {
        flex-direction: row;
        justify-content: center;
        height: auto;
        min-height: auto;
        max-height: none;
    }
    
    .feature-card {
        flex: 1;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px 0;
    }
    
    .demo-container {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .demo-header {
        flex-direction: row;
        gap: 12px;
        padding: 12px 15px;
        align-items: center;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    
    .logo-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .logo h1 {
        font-size: 0.9rem;
    }
    
    .status-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .status-dot {
        width: 6px;
        height: 6px;
    }
    
    .main-content {
        padding: 15px;
        gap: 15px;
        grid-template-columns: 1fr;
    }
    
    .chat-panel {
        height: calc(100vh - 220px);
        max-height: 600px;
        min-height: 400px;
    }
    
    .chat-messages {
        padding: 15px;
        gap: 12px;
        width: 100%;
    }
    
    .message {
        gap: 10px;
        width: 100%;
    }
    
    .message-avatar {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }
    
    .message-avatar svg {
        width: 16px;
        height: 16px;
    }
    
    .message-bubble {
        padding: 10px 12px;
        border-radius: 14px;
        width: 100%;
    }
    
    .message-bubble p {
        font-size: 0.85rem;
    }
    
    .message-content {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .message-wrapper {
        max-width: 85%;
        width: auto;
    }
    
    .message-time {
        font-size: 0.6rem;
        padding: 0 6px;
    }
    
    .chat-input {
        padding: 12px 15px;
        gap: 8px;
    }
    
    .chat-input input {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    
    .send-btn {
        width: 38px;
        height: 38px;
    }
    
    .send-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .features-panel {
        flex-direction: column;
        height: auto;
        min-height: auto;
        max-height: none;
        gap: 10px;
    }
    
    .feature-card {
        max-width: 100%;
        width: 100%;
        padding: 12px;
        box-sizing: border-box;
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 6px;
    }
    
    .feature-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .feature-card h3 {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .feature-card p {
        font-size: 0.7rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    .feature-stats {
        gap: 6px;
        padding-top: 8px;
    }
    
    .stat-value {
        font-size: 0.8rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    .option-btn {
        font-size: 0.7rem;
        padding: 5px 10px;
        white-space: nowrap;
    }
    
    .quick-options {
        gap: 6px;
        margin: 10px 0;
    }
    
    .typing-indicator {
        padding: 10px 12px;
    }
    
    .typing-dot {
        width: 6px;
        height: 6px;
    }
    
    .bullet-point,
    .numbered-point {
        font-size: 0.8rem;
        margin: 0.3em 0;
    }
}

/* Enhanced Password Protection */
.password-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background: var(--bg-primary);
}

.password-box {
    background: rgba(26, 35, 50, 0.7);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(20, 184, 166, 0.3);
    border-radius: 16px;
    padding: 40px 35px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(20, 184, 166, 0.15);
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lock-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(16, 185, 129, 0.2));
    border: 2px solid rgba(20, 184, 166, 0.4);
    border-radius: 12px;
    color: var(--accent-teal);
    display: block;
    animation: pulse-lock 2s ease-in-out infinite;
}

@keyframes pulse-lock {
    0%, 100% {
        box-shadow: 0 0 15px rgba(20, 184, 166, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(20, 184, 166, 0.5);
    }
}

.password-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-primary);
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.password-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.password-input-group input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(13, 24, 41, 0.7);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(20, 184, 166, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.password-input-group input:focus {
    border-color: var(--accent-teal);
    background: rgba(13, 24, 41, 0.9);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

.password-input-group input::placeholder {
    color: rgba(160, 164, 184, 0.5);
}

.password-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-emerald));
    border: 2px solid rgba(20, 184, 166, 0.4);
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.password-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.5);
}

.password-btn:active {
    transform: translateY(0);
}

.password-btn svg {
    width: 20px;
    height: 20px;
}

.password-error-msg {
    color: #ff6b6b;
    font-size: 0.85rem;
    min-height: 20px;
    margin: 0;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* Mobile responsive for password */
@media (max-width: 768px) {
    .password-section {
        padding: 15px;
    }
    
    .password-box {
        padding: 30px 20px;
    }
    
    .lock-icon {
        width: 60px;
        height: 60px;
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .password-box h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .password-input-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .password-input-group input {
        width: 100%;
        padding: 14px 15px;
        font-size: 1rem;
    }
    
    .password-btn {
        width: 100%;
        height: 50px;
        border-radius: 10px;
    }
    
    .password-btn svg {
        width: 22px;
        height: 22px;
    }
}
