* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    background: #0f172a;
    color: white;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Creative Background Blobs */
.background-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.4;
    animation: move 20s infinite alternate;
}

.blob-1 { top: -10%; left: -10%; }
.blob-2 { bottom: -10%; right: -10%; background: #06b6d4; animation-delay: -5s; }

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 50px) scale(1.1); }
}

/* Layout */
.container {
    display: flex;
    max-width: 1000px;
    width: 90%;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text span {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 400px;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    width: 400px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.glass-card h3 {
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Floating Inputs */
.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input, .input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #475569;
    padding: 10px 0;
    color: white;
    outline: none;
    font-size: 1rem;
    transition: 0.3s;
}

.input-group label {
    position: absolute;
    left: 0;
    top: 10px;
    color: #64748b;
    pointer-events: none;
    transition: 0.3s;
}

.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label {
    top: -15px;
    font-size: 0.8rem;
    color: #3b82f6;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: #3b82f6;
}

/* Creative Button */
button {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: white;
    color: #0f172a;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

button:hover {
    transform: translateY(-2px);
    background: #e2e8f0;
}

#status {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    color: #3b82f6;
}

/* Responsive */
@media (max-width: 768px) {
    .container { flex-direction: column; text-align: center; padding-top: 50px; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-text p { margin: 0 auto; }
    body { overflow-y: auto; }
}