body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

.form-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.input-field {
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.input-field:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
    outline: none;
}

.btn-primary {
    background-color: #4f46e5;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #4338ca;
    transform: translateY(-1px);
}
