body {
            font-family: 'Open Sans', sans-serif;
            background: linear-gradient(135deg, #2c3e50, #3498db);
            color: #fff;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: flex-start; /* Align form to start with space from top */
            min-height: 100vh;
            padding-top: 40px; /* Space from the top */
        }
        .form-container {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 500px;
            backdrop-filter: blur(10px);
            margin: 20px; /* Add margin for smaller screens */
        }
        h1 {
            text-align: center;
            margin-bottom: 20px;
        }
        h1 a {
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        h1 img {
            margin-right: 10px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        input[type="text"],
        input[type="email"],
        input[type="password"],
        select {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 16px;
        }
        input[type="text"]::placeholder,
        input[type="email"]::placeholder,
        input[type="password"]::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        input[type="submit"] {
            width: 100%;
            padding: 12px;
            background: #3498db;
            border: none;
            border-radius: 8px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        input[type="submit"]:hover {
            background: #2980b9;
        }
        .check {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .check input {
            margin-right: 10px;
        }
        .check a {
            color: #3498db;
            text-decoration: none;
        }
        .check a:hover {
            text-decoration: underline;
        }
        .startingCap {
            display: none;
        }
        .startingCap.active {
            display: block;
        }




			/* Fix for dropdown background color */
				select {
					background-color: rgba(255, 255, 255, 0.1);
					color: #fff;
					border: 1px solid rgba(255, 255, 255, 0.3);
					border-radius: 8px;
					padding: 12px;
					font-size: 16px;
					appearance: none; /* Remove default arrow */
					-webkit-appearance: none; /* Remove default arrow for Safari */
					-moz-appearance: none; /* Remove default arrow for Firefox */
					width: 100%; /* Ensure full width */
				}

				select option {
					background-color: #2c3e50; /* Dark background for options */
					color: #fff; /* White text for options */
				}

				/* Custom dropdown arrow */
				.select-wrapper {
					position: relative;
					width: 100%; /* Ensure full width */
				}

				.select-wrapper::after {
					content: "▼";
					position: absolute;
					top: 50%;
					right: 15px;
					transform: translateY(-50%); /* Center vertically */
					pointer-events: none;
					color: #fff;
					font-size: 12px;
					line-height: 1; /* Ensure the arrow aligns properly */
				}
        /* Responsive Design */
        @media (max-width: 600px) {
            body {
                padding-top: 20px; /* Smaller space on mobile */
            }
            .form-container {
                padding: 20px;
                margin: 10px;
            }
            h1 {
                font-size: 24px;
            }
            h1 img {
                height: 50px; /* Smaller logo on mobile */
            }
            input[type="text"],
            input[type="email"],
            input[type="password"],
            select {
                padding: 10px;
                font-size: 14px;
            }
            input[type="submit"] {
                padding: 10px;
                font-size: 14px;
            }
        }