/* form.css */
.form-container {
    position: relative; /* Ensure it's positioned relative to the canvas */
    z-index: 10; /* Higher than the canvas (z-index: 1) */
    margin: 40px auto;
    padding: 20px;
    max-width: 400px;
    width: 100%;
    background: #fff; /* White background for the form */
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add a shadow for better visibility */
}

.input-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 5px;
}

.input-group input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #007acc;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
    background: #0055a4;
    transform: translateY(-2px);
}
