@import url('https://fonts.googleapis.com/css2?family=Electrolize&display=swap');

.electrolize-regular {
  font-family: "Electrolize", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.login-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
}

/* Login Container */
.login-container {
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid #00ffff;
    border-radius: 15px;
    height: 80vh;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    width: 90%;
    max-width: 450px;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.5),
        0 0 60px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    animation: containerGlow 2s infinite alternate;
}

@keyframes containerGlow {
    from {
        box-shadow: 
            0 0 30px rgba(0, 255, 255, 0.5),
            0 0 60px rgba(0, 255, 255, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    to {
        box-shadow: 
            0 0 40px rgba(0, 255, 255, 0.6),
            0 0 80px rgba(0, 255, 255, 0.4),
            inset 0 0 25px rgba(255, 255, 255, 0.15);
    }
}

/* Logo */
.logo {
    text-align: center;
    margin-bottom: 30px;
}

.pixel-logo {
    margin-bottom: 22px;
    animation: logoGlow 3s ease-in-out infinite alternate;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pixel-logo svg {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.5));
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.5));
    }
    to {
        filter: drop-shadow(0 0 15px rgba(255, 165, 0, 0.7));
    }
}

.logo-subtitle {
    color: #fff;
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.8;
    letter-spacing: 2px;
}

/* Title */
.forgot-title {
    text-align: center;
    color: #87CEEB;
    font-family: "Electrolize", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(135, 206, 250, 0.5);
}

/* Form Styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-label {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-wrapper {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 25px;
    padding: 8px 20px;
    box-shadow: 
        0 10px 30px rgba(0, 255, 255, 0.3),
        0 0 0 2px rgba(0, 255, 255, 0.6),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid #00ffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.search-wrapper:hover,
.search-wrapper:focus-within {
    border-color: #FF00FF;
    box-shadow: 
        0 15px 40px rgba(255, 0, 255, 0.4),
        0 0 0 2px rgba(255, 0, 255, 0.6),
        inset 0 0 20px rgba(255, 0, 255, 0.1);
    transform: translateY(-2px);
}

.form-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 20px;
    font-size: 1.1rem;
    background: transparent;
    color: #FFFFFF;
    font-family: "Electrolize", sans-serif;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #00FFFF;
    opacity: 0.7;
    font-family: "Electrolize", sans-serif;
}

/* Login Button */
.login-button {
    background: linear-gradient(135deg, #00FFFF, #9966cc);
    color: #000000;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    width: 100%;
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
    font-family: "Electrolize", sans-serif;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(153, 102, 204, 0.5);
    filter: brightness(1.1);
}

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

.login-button::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;
}

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

/* Additional Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #00ffff;
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-group input[type="checkbox"]:hover {
    border-color: #ff00ff;
    box-shadow: 0 0 5px rgba(255, 0, 255, 0.3);
}

.checkbox-group input[type="checkbox"]:checked {
    background: #00ffff;
    border-color: #00ffff;
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: #000;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-group label {
    color: #fff;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: "Electrolize", sans-serif;
}

.forgot-password {
    color: #00ffff;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    font-family: "Electrolize", sans-serif;
    position: relative;
}

.forgot-password:hover {
    color: #9966cc;
    text-shadow: 0 0 8px rgba(153, 102, 204, 0.5);
}

.forgot-password::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background: #9966cc;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.forgot-password:hover::after {
    width: 100%;
}

/* Footer Links */
.login-footer {
    font-family: "Electrolize", sans-serif;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 0, 255, 0.3);
}

.signup-link {
    color: #fff;
    font-size: 0.9rem;
}

.signup-link a {
    color: #ff00ff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.signup-link a:hover {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

.welcome-line {
    color: #fff;
    font-size: 0.85rem;
    margin-bottom: 8px;
    line-height: 1.4;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.welcome-line:first-child {
    color: #ff00ff;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    animation: welcomeGlow 2s ease-in-out infinite alternate;
}

.welcome-cta {
    color: #00ffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 12px;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes welcomeGlow {
    from { 
        text-shadow: 0 0 10px rgba(255, 0, 255, 0.5); 
    }
    to { 
        text-shadow: 0 0 15px rgba(255, 0, 255, 0.8), 0 0 25px rgba(255, 0, 255, 0.3); 
    }
}

@keyframes ctaPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Sidebar */
.welcome-text {
    font-family: "Electrolize", sans-serif;
    text-align: left;
    padding: 25px;
    border: 3px solid rgba(255, 0, 255, 0.5);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    max-width: 400px;
    flex-shrink: 0;
    max-height: 60vh;
    overflow-y: auto;
}

.welcome-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.header-text {
    color: #FFA500;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.section {
    margin-bottom: 25px;
}

.section-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title.orange {
    color: #FFA500;
}

.section-title.cyan {
    color: #00FFFF;
}

.section-content {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facts-list li {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.facts-list li::before {
    content: '•';
    color: #00FFFF;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    flex-direction: column;
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.features-list li::before {
    content: '•';
    color: #00FFFF;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.feature-name {
    font-weight: 600;
}

.feature-name.cyan {
    color: #00FFFF;
}

.testimonial {
    border-left: 3px solid #FF00FF;
    padding-left: 15px;
    margin: 10px 0;
}

.quote {
    color: #FF00FF;
    font-size: 0.85rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 8px;
}

.author {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
}

.welcome-text::-webkit-scrollbar {
    width: 6px;
}

.welcome-text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.welcome-text::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 255, 0.5);
    border-radius: 3px;
}

.welcome-text::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 0, 255, 0.7);
}

.login-container::-webkit-scrollbar {
    width: 6px;
}

.login-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.login-container::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 255, 0.5);
    border-radius: 3px;
}

.login-container::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .login-container {
        justify-self: center;
        margin: 0 auto;
    }
    
    .welcome-text {
        text-align: center;
        max-width: 100%;
        order: -1;
    }
    
    body {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 30px 25px;
    }
    
    .pixel-logo svg {
        max-width: 220px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }
}