.reset-container {
    max-width: 500px;
    margin: 80px auto;
    padding: 30px 25px;
    text-align: center;
    border-radius: 15px;
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.25), 0 0 40px rgba(0, 200, 255, 0.15);
    color: #fff;
    animation: fadeIn 0.8s ease-out;
}

.reset-container h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.3);
}

.reset-container p {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 20px;
}

.reset-container input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.reset-container input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.reset-container input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(0, 200, 255, 0.4);
}

.reset-btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.reset-btn:hover {
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    box-shadow: 0 0 15px rgba(0, 200, 255, 0.6);
}

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