/* General Styling */
    body {
        font-family: 'Inter', sans-serif;
    }
    
    /* Form Container */
    form {
        max-width: 100%;
        margin: 20px auto;
        background: #ffffff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    /* Form Title */
    h2 {
        font-size: 1.5rem;
        font-weight: 600;
        text-align: center;
        margin-bottom: 10px;
    }
    
    p {
        font-size: 0.9rem;
        text-align: center;
        color: #555;
    }
    
    /* Labels */
    label {
        display: flex;
        align-items: center;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    /* Tooltip Styling */
    label span {
        margin-left: 6px;
        font-size: 0.8rem;
        color: #007bff;
        cursor: pointer;
    }
    
    /* Inputs */
    input, select {
        width: 100%;
        padding: 10px;
        font-size: 1rem;
        border-radius: 6px;
        border: 1px solid #ccc;
        outline: none;
        transition: all 0.2s ease-in-out;
    }
    
    /* Focus Styles */
    input:focus, select:focus {
        border-color: #007bff;
        box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.3);
    }
    
    /* Buttons */
    button {
        background-color: #007bff;
        color: white;
        padding: 12px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 6px;
        border: none;
        cursor: pointer;
        width: 100%;
        transition: background 0.2s ease-in-out;
    }
    
    button:hover {
        background-color: #0056b3;
    }
    
    /* Mobile Adjustments */
    @media (max-width: 640px) {
        form {
            padding: 15px;
        }
        h2 {
            font-size: 1.3rem;
        }
        input, select, button {
            font-size: 0.9rem;
            padding: 8px;
        }
        button {
            padding: 10px;
        }
    }