/* Background gradient */
.gradient-bg {
    background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
}

/* Form labels */
.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

/* Inputs */
.form-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: white;
    transition: 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Submit button */
.submit-btn {
    width: 100%;
    background: #2563eb;
    color: white;
    font-weight: bold;
    padding: 14px;
    border-radius: 12px;
    transition: 0.2s;
}

.submit-btn:hover {
    background: #1d4ed8;
}

/* Return button */
.return-btn {
    display: inline-block;
    background: #facc15;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: bold;
    color: #1f2937;
    transition: 0.2s;
}

.return-btn:hover {
    background: #eab308;
}

/* Confetti canvas */
canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
