@charset "utf-8";
/* CSS Document */
      /* Reset CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f9;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Header Styling */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            background-color: #2c3e50;
            color: #fff;
            z-index: 1000;
        }

        header .logo h1 {
            font-size: 1.8rem;
        }

        header nav ul {
            display: flex;
            list-style: none;
        }

        header nav ul li {
            margin-left: 2rem;
        }

        header nav ul li a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
        }

        header nav ul li a:hover {
            color: #ecf0f1;
        }

        /* Main Content Styling */
        .form-container {
            background-color: #fff;
            max-width: 600px;
            width: 100%;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin: 120px auto 80px; /* Adjusted to leave space for header and footer */
        }

        .form-container h1 {
            font-size: 24px;
            color: #333;
            margin-bottom: 10px;
        }

        .form-container p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .form-container .warning {
            color: #d9534f;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group input[type="date"],
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 8px;
            font-size: 14px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-group input[type="file"] {
            font-size: 14px;
        }

        .submit-btn {
            background-color: #5a6e4f;
            color: #fff;
            padding: 10px 20px;
            font-size: 16px;
            font-weight: bold;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background-color: #3f4e37;
        }

        /* Footer Styling */
        footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #2c3e50;
            color: #fff;
            text-align: center;
            padding: 1.5rem 2rem;
            z-index: 1000;
        }

        footer .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        footer .footer-content p {
            margin-bottom: 0.5rem;
        }

        footer .footer-content .social-media a {
            color: #ecf0f1;
            text-decoration: none;
            margin: 0 0.5rem;
        }

        footer .footer-content .social-media a:hover {
            color: #bdc3c7;
        }

        /* Adjust main content margin to avoid overlap */
        main {
            margin-top: 0px; /* Adjusted to leave space for the fixed header */
            margin-bottom: 40px; /* Adjusted to leave space for the fixed footer */
            padding: 5px, 20px, 5px, 20px;
            flex: 1;
        }
