    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
    }

    body {
        background-color: #f4f6f8;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }

   .form-title {
       text-align: center;
       font-size: 2.5rem;
       font-weight: bold;
       background: linear-gradient(90deg, #007BFF, #00CFFF);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       margin-bottom: 25px;
       letter-spacing: 1px;
   }

    form {
        background-color: #fff;
        padding: 30px 40px;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        width: 100%;
        max-width: 400px;
    }

    h1 {
        text-align: center;
        margin-bottom: 20px;
        color: #333;
    }

    label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: #555;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="date"] {
        width: 100%;
        padding: 10px 12px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        transition: 0.3s;
        font-size: 14px;
    }

    input:focus {
        border-color: #007BFF;
        outline: none;
        box-shadow: 0 0 5px rgba(0,123,255,0.5);
    }

    fieldset {
        border: 1px solid #ccc;
        border-radius: 5px;
        padding: 10px 15px;
        margin-bottom: 15px;
    }

    legend {
        padding: 0 5px;
        font-weight: bold;
        color: #555;
    }

    fieldset label {
        display: inline-block;
        margin-right: 15px;
        font-weight: normal;
    }

    input[type="checkbox"] {
        margin-right: 8px;
    }

    button {
        width: 100%;
        padding: 12px;
        background-color: #007BFF;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s;
    }

    button:hover {
        background-color: #0056b3;
    }

      
