* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: linear-gradient(145deg, #060812 0%, #0b0e1a 100%);
    color: #e0f0ff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.forgot-wrapper {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.brand {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 8vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(90deg, #00ff9d, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.card {
    background: rgba(20, 25, 45, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 255, 157, 0.15);
    border-radius: 2rem;
    padding: 2.2rem 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00ff9d, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    text-align: center;
}

.subhead {
    text-align: center;
    color: #a3bffa;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 255, 157, 0.2);
    padding-bottom: 1rem;
}

.instruction {
    background: rgba(0, 255, 157, 0.05);
    border-left: 4px solid #00ff9d;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    color: #b8e2ff;
    margin-bottom: 1.8rem;
}

.input-group {
    margin-bottom: 1.8rem;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #b0c8ff;
    margin-bottom: 0.4rem;
    letter-spacing: 0.3px;
}

.input-field {
    width: 100%;
    background: rgba(8, 15, 30, 0.7);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 2rem;
    padding: 0.9rem 1.4rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: #00ff9d;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.4);
}

.btn-primary {
    width: 100%;
    background: linear-gradient(90deg, #00ff9d, #00d4ff);
    border: none;
    color: #0b1121;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0.9rem;
    border-radius: 3rem;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
    transition: transform 0.15s, box-shadow 0.2s;
    font-family: 'Orbitron', monospace;
    margin-top: 0.5rem;
}

.btn-primary:hover {
    transform: scale(1.01);
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.7);
}

.back-link {
    margin-top: 2rem;
    text-align: center;
}

.back-link a {
    color: #00d4ff;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px dashed rgba(0, 212, 255, 0.4);
    transition: color 0.2s;
}

.back-link a:hover {
    color: #00ff9d;
    border-bottom-color: #00ff9d;
}

/* simple modal for demo */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #12182b;
    border: 2px solid #00ff9d;
    border-radius: 2rem;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 50px #00ff9d40;
}

.modal-content i {
    font-size: 4rem;
    color: #00ff9d;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px #00ff9d);
}

.modal-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-bottom: 0.8rem;
}

.modal-content p {
    color: #b0d0ff;
    margin-bottom: 1.5rem;
}

.modal-btn {
    background: linear-gradient(90deg, #00ff9d, #00d4ff);
    border: none;
    color: #0b1121;
    font-weight: 700;
    padding: 0.7rem 2rem;
    border-radius: 3rem;
    cursor: pointer;
    font-size: 1rem;
}