            /* apply section */

           

            body{
                font-family: Arial, sans-serif;
                background-color: #f4f4f4;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                height: auto;
                margin: 0;
                padding: 20px;
                box-sizing: border-box;
                background-image: url(pics/head.jpg);
                backdrop-filter: blur(10px);
                background-size: cover;
                opacity: 0.9;
            }
            
            form {
                background: #fff;
                padding: 20px;
                border-radius: 20px;
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
                width: 100%;
                max-width: 600px;
            }
            form h2 {
                color: #333;
                margin-bottom: 20px;
            }
            form p {
                margin-bottom: 15px;
                color: #666;
            }
            input[type="text"],
            input[type="number"],
            input[type="date"],
            input[type="email"],
            textarea,
            select {
                width: calc(100% - 20px);
                padding: 10px;
                margin-top: 5px;
                border: 1px solid #ccc;
                border-radius: 5px;
            }
            input[type="radio"],
            input[type="checkbox"] {
                margin-right: 10px;
            }
            textarea {
                resize: none;
            }
            form label {
                color: #666;
            }
            form input[type="submit"] {
                background-color: #ff6f61;
                color: white;
                border: none;
                padding: 10px 30px;
                border-radius: 10px;
                cursor: pointer;
                font-size: 16px;
            }
            form input[type="submit"]:hover {
                background-color: #fb5546;
            }
            .form-section {
                margin-bottom: 20px;
            }
            .form-section h2 {
                text-decoration: underline;
            }
            