
        .container-form {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 100%;
            text-align: center;
        }

        .form-heading h2 {
            color: #333;
            margin-bottom: 20px;
        }

        .login-form label {
            display: block;
            text-align: left;
            margin-bottom: 8px;
            color: #555;
            font-size: 14px;
        }
		
		.login-form input {
			width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
		}
		.login-form select {
			width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
		}
		.login-form button {
			width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
		}

        .login-form button {
            background-color: #4CAF50;
            color: white;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .login-form button:hover {
            background-color: #45a049;
        }

        .login-form p {
            color: #777;
            margin-top: 0;
        }

        .login-form a {
            text-decoration: none;
            color: #4CAF50;
            cursor: pointer;
        }

        .login-form a:hover {
            text-decoration: underline;
        }

        #registerForm {
            display: none;
        }

        .login-form fieldset {
            border: 1px solid #ddd;
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 5px;
        }

        .login-form legend {
            font-size: 14px;
            color: #333;
        }

        .login-form .error {
            color: red;
        }
		

a#showRegisterLink {
    cursor: pointer;
    color: blue;
}