body {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    font-family: 'Inter', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
} 
.container {
    background: #fff;
    padding: 2.7rem 2.2rem 2.1rem 2.2rem;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(99,102,241,0.10), 0 1.5px 8px rgba(0,0,0,0.03);
    max-width: 420px;
    width: 100%;
    text-align: center;
    transition: transform 0.15s cubic-bezier(.4,2,.6,1);
}
.container:hover {
    transform: scale(1.018);
}
h1 {
    margin-bottom: 0.2rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: #22223b;
    letter-spacing: -1px;
}
.subtitle {
    color: #6366f1;
    font-size: 1.13rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    margin-top: 0.1rem;
    letter-spacing: 0.01em;
}
.lead {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.07rem;
    line-height: 1.6;
}
p {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1rem;
}
.form-group {
    margin-bottom: 1.2rem;
}
input, textarea {
    width: 380px;
    padding: 0.9rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    background: #f9fafb;
    color: #222;
    outline: none;
    transition: border 0.2s;
}
input:focus, textarea:focus {
    border: 1.5px solid #6366f1;
    background: #fff;
}
button[type="submit"] {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(90deg, #6366f1 60%, #818cf8 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(99,102,241,0.10);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    margin-top: 0.3rem;
}
button[type="submit"]:hover {
    background: linear-gradient(90deg, #4f46e5 60%, #6366f1 100%);
    box-shadow: 0 4px 16px rgba(99,102,241,0.13);
}
/* Already enhanced above */
