:root {
    --primary-bg: #0a0a0a;
    --nav-bg: rgba(10, 10, 10, 0.8);
    --accent-color: #6a0dad;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add these base styles at the top of login.css */
body, html {
    font-family: 'Inter', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

/* Container styles */
.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
}

/* Update login container layout */
.login-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    max-width: 1440px;
    min-width: 480px;
    width: 100%;
    margin: -90px auto 0;
    padding: 0 2rem;
}

/* Copy all the navbar and basic styles from contactus.css */
/* ... (copy all the base styles, navbar, and container styles from contactus.css) ... */

@keyframes borderGlow {
    0% {
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        border-color: rgba(200, 200, 200, 0.5);
        box-shadow: 0 0 30px rgba(200, 200, 200, 0.2);
    }
    100% {
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
}

/* Update login box styles */
.login-box {
    flex: 0 0;
    min-width: 480px;
    max-width: 480px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: borderGlow 3s infinite;
}

/* Update right content styles */
.right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 720px;
    width: 100%;
}

/* Login form specific styles */
.login-button {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    text-decoration: none;
}

.login-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.login-button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.divider {
    margin: 20px 0;
    position: relative;
    text-align: center;
    color: var(--text-secondary);
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.email-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.continue-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(45deg, var(--accent-color), #8a2be2);
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.continue-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.2);
}

.terms-text {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 20px;
}

.terms-text a {
    color: var(--text-primary);
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

/* Logo container styles */
.logo-container {
    position: static;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    padding: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}



.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo-link:hover {
    opacity: 0.8;
}





/* Update value proposition styles */
.value-proposition {
    text-align: center;
}

.value-proposition h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 0rem;
    text-align: center;
    word-wrap: break-word;
}

.regular-text {
    color: var(--text-primary);
}

/* Add the new glow animation */
@keyframes colorGlow {
    0% { text-shadow: 0 0 10px rgba(106, 13, 173, 0.5); } /* Purple */
    33% { text-shadow: 0 0 10px rgba(46, 204, 113, 0.5); } /* Green */
    66% { text-shadow: 0 0 10px rgba(52, 152, 219, 0.5); } /* Blue */
    100% { text-shadow: 0 0 10px rgba(106, 13, 173, 0.5); } /* Back to Purple */
}

/* Update the glow-text class */
.glow-text {
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: colorGlow 6s infinite linear; /* Smooth 6-second cycle */
}

.vp-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-align: center;
}

/* Update trust section styles */
.trust-section {
    text-align: center;
    width: 100%;
}

.trust-section h3 {
    margin-bottom: 2rem;
    text-align: center;
}

/* Remove all carousel-related styles and replace with simple grid */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin-top: 2rem;
}

.logo-grid img {
    height: 35px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--transition);
}

.logo-grid img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(106, 13, 173, 0.6)) 
            drop-shadow(0 0 12px rgba(138, 43, 226, 0.4));
}

/* Update responsive styles */
@media (max-width: 1024px) {
    .login-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 0rem;
        min-width: auto;
    }

    .login-box {
        width: 80%;
        max-width: 80%;
        min-width: auto;
        order: 2;
    }

    .right-content {
        display: contents;
    }

    .value-proposition {
        order: 1;
        margin-top: 1rem;
    }

    .trust-section {
        order: 3;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0rem 0.5rem 0;
    }
    
   

    .value-proposition h2 {
        font-size: clamp(1.65rem, 3.3vw, 2.2rem);
    }

    .vp-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    

    .login-box {
        background-color: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        animation: none !important;
        box-shadow: none !important;
    }

    .login-button {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1) !important;
    }

    .login-button:hover {
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.15) !important;
    }

    .logo-carousel {
        max-width: 100%;
        padding: 10px 0;
    }

    .container-fluid {
        padding: 0 1rem;
    }
}

/* Logo carousel styles */
.logo-carousel {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
}

.logo-carousel .swiper-wrapper {
    display: flex;
    align-items: center;
    will-change: transform;
    transform: translateZ(0);
}

.logo-carousel .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: auto;
    padding: 0 15px;
    min-height: 35px;
    flex-shrink: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.logo-carousel img {
    height: 35px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--transition);
    margin: 0 10px;
    display: block;
}

.logo-carousel img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(106, 13, 173, 0.6)) 
            drop-shadow(0 0 12px rgba(138, 43, 226, 0.4));
}

/* Handle broken images */
.logo-carousel img:not([src]), 
.logo-carousel img[src=""] {
    visibility: hidden;
}

/* Add responsive styles for the carousel */
@media (max-width: 768px) {
    .logo-carousel {
        padding: 10px 0;
    }
    
    .logo-carousel img {
        height: 30px;
    }
}

/* Update the accent highlight style */
.accent-highlight {
    background: var(--accent-color);
    color: var(--text-primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* Popup styles for unavailable signup methods */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}

.popup-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    max-width: 400px;
    width: 100%;
    color: var(--text-primary);
    overflow: hidden;
    animation: popupSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.popup-body {
    padding: 1rem 1.5rem;
}

.popup-body p {
    margin: 0 0 1rem 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

.popup-body p:last-child {
    margin-bottom: 0;
}

.popup-body strong {
    color: var(--accent-color);
    font-weight: 600;
}

.popup-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    justify-content: center;
}

.popup-ok-btn {
    background: linear-gradient(45deg, var(--accent-color), #8a2be2);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    min-width: 100px;
}

.popup-ok-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
}

/* Responsive popup styles */
@media (max-width: 768px) {
    .popup-content {
        margin: 1rem;
        max-width: none;
    }
    
    .popup-header {
        padding: 1rem 1rem 0.75rem;
    }
    
    .popup-header h3 {
        font-size: 1.1rem;
    }
    
    .popup-body {
        padding: 0.75rem 1rem;
    }
    
    .popup-footer {
        padding: 0.75rem 1rem 1rem;
    }
    
    .popup-ok-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}