body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            /* Add your background image here */
            background-image: url('photo9.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            background-attachment: fixed;
        }
        .top-menu {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #00033;
            padding: 10px 60px;
            color: white;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
        }
        .menu {
            display: flex;
            gap: 15px;
        }
        .menu a {
            color: white;
            text-decoration: none;
            font-size: 16px;
        }
        .menu a:hover {
            text-decoration: underline;
        }
        .center-wrapper {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .form-container {
            width: 100%;
            max-width: 400px;
			
            background: #000333;
            padding: 32px 24px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
		.form-container p {
			 text-align: right;
		}
		
		.form-container a {
			
			color: white;
			text-decoration: none;			
			margin-bottom: 3px;
            font-weight: bold;
			
		}
		
		.form-container p, a:hover {
			 text-decoration: underline;
		}
		
        form {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 5px;
            font-weight: bold;
        }
        input, textarea {
            margin-bottom: 15px;
            padding: 8px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
       form {
			display: flex;
			flex-direction: column;
		}

		input, select, button {
			margin: 0.5em 0;
			padding: 0.7em;
			border: 1px solid #ccc;
			border-radius: 5px;
		}
		input, select, button {
			margin: 0.5em 0;
			padding: 0.7em;
			border: 1px solid #ccc;
			border-radius: 5px;
			width: 100%;
			box-sizing: border-box;
			font-size: 1em;
		}
		input, select {
			height: 40px;
		}

		button {
			background: #007bff;
			color: white;
			cursor: pointer;
			border: none;
		}
		h2  {
			color: white;
		}
		