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

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

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

/* Forgot Password Container */
.forgot-password-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 */
.pixel-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.pixel-logo svg {
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.5));
}

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

.forgot-subtitle {
    text-align: center;
    color: #FFFFFF;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
    opacity: 0.9;
}

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

.form-group {
    position: relative;
}

.search-wrapper {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 25px;
    padding: 8px 20px;
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: none !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.search-wrapper:hover,
.search-wrapper:focus-within {
    box-shadow: none !important;
    transform: translateY(-2px);
}

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

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

.form-input::placeholder {
    color: #00FFFF;
    opacity: 0.7;
}

/* Submit Button */
.submit-btn {
    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);
}

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

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

.submit-btn::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;
}

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

/* Back to Login Link */
.back-link {
    text-align: center;
    margin-top: 25px;
}

.back-link a {
    color: #00FFFF;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.back-link a:hover::after {
    width: 100%;
}

/* Success Message */
.success-message {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    color: #90EE90;
    font-size: 14px;
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease;
}

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

/* 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);
}

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

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

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

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

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

@media (max-width: 480px) {
    .forgot-password-container {
        padding: 30px 25px;
    }
    
    .forgot-title {
        font-size: 20px;
    }
}

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