<style>
        .register-pagewrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f8f9fa;
            padding: 20px; /* Prevent overflow on small screens */
            box-sizing: border-box; /* Include padding in element's total width and height */
        }
		.register-container {
			margin: 0 auto;
			width: 100%;
			max-width: 900px;
			padding: 20px;
			padding-top: 60px;
			background-color: #fff;
			box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
			border-radius: 8px;
			box-sizing: border-box;
		}

        .register-container h2 {
            text-align: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: #333;
        }
        .register-form-group {
            margin-bottom: 15px;
        }
        .register-form-group label {
            font-weight: bold;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: #495057;
            display: block;
        }
        .register-form-group input {
            width: 50%;
            padding: 10px;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-size: 1rem;
            color: #495057;
            background-color: #fff;
            box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
            transition: border-color 0.3s ease-in-out;
        }
        .register-form-group input:focus {
            border-color: #80bdff;
            outline: none;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }
		.register-form-control {
			width: 50%;
			padding: 10px;
			border: 1px solid #ced4da;
			border-radius: 4px;
			font-size: 1rem;
			color: #495057;
			background-color: #fff;
			box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
			transition: border-color 0.3s ease-in-out;
		}
		.register-form-control:focus {
			border-color: #80bdff;
			outline: none;
			box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
		}
        .register-btn {
            width: 50%;
            padding: 10px;
            background-color: #007bff;
            border: none;
            color: white;
            font-size: 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease-in-out;
        }
        .register-btn:hover {
            background-color: #0056b3;
        }
		
		.hint{
		  display: block;
		  font-size: 12px;
		  font-weight: normal;
		  color: #666;
		  margin-top: 2px;
		}

		.error-box{
		  background-color: #f8d7da;
		  color: #721c24;
		  border: 1px solid #f5c6cb;
		  padding: 16px 18px;
		  border-radius: 8px;
		  margin-bottom: 20px;
		  text-align: left; /* important */
		}

		.error-box ul{
		  margin: 8px 0 0 18px;
		}

		.error-box li{
		  margin-bottom: 6px;
		}

		.error-box code{
		  background: #fff;
		  padding: 2px 6px;
		  border-radius: 4px;
		  border: 1px solid #e0e0e0;
		}


		.error-line{
		  margin-bottom: 6px;
		}

		.error-item{
		  margin-left: 12px;
		  margin-bottom: 4px;
		}



		.info-box{
		  background: #fff8db;
		  border: 1px solid #f2e1a6;
		  color: #4a3b00;
		  padding: 16px 18px;
		  border-radius: 10px;
		  margin: 18px 0 22px;
		  text-align: left;
		}

		.info-title{
		  font-weight: 700;
		  margin-bottom: 8px;
		}

		.info-text{
		  margin: 0 0 12px 0;
		  font-size: 14px;
		  line-height: 1.4;
		}

		.info-kv{
		  display: grid;
		  gap: 10px;
		  max-width: 360px; /* keeps it neat */
		}

		.kv-row{
		  display: flex;
		  align-items: center;
		  justify-content: space-between;
		  gap: 12px;
		  padding: 10px 12px;
		  background: rgba(255,255,255,0.65);
		  border: 1px solid rgba(0,0,0,0.08);
		  border-radius: 8px;
		}

		.kv-label{
		  font-size: 13px;
		  font-weight: 600;
		  color: #3d3200;
		}

		.kv-value{
		  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
		  font-size: 13px;
		  padding: 2px 8px;
		  border-radius: 6px;
		  background: #ffffff;
		  border: 1px solid rgba(0,0,0,0.12);
		}

		.info-foot{
		  margin: 12px 0 0 0;
		  font-size: 13px;
		  color: #5a4a00;
		}





		/* Styling for the Terms and Conditions checkbox */
		.terms-container {
			display: flex;
			align-items: center;
			justify-content: center; /* Center-aligns the checkbox and label */
			gap: 10px; /* Adds space between checkbox and label */
			margin-top: 10px; /* Adds some space above the checkbox group */
		}

		.terms-container input[type="checkbox"] {
			width: 20px;
			height: 20px;
			cursor: pointer;
		}

		.terms-container label {
			margin: 0; /* Ensures the label doesn't add extra margin */
		}
		
		
		.error-box {
			
			background-color: #f8d7da;
			color: #721c24;
			border: 1px solid #f5c6cb;
			padding: 10px;
			border-radius: 5px;
			margin-bottom: 20px;
			text-align: center;
		}
		
		.success-box {
			
			background-color: #d4edda;
			color: #155724;
			border: 1px solid #f5c6cb;
			padding: 10px;
			border-radius: 5px;
			margin-bottom: 20px;
			text-align: center;
		}
		
		.message-container {
			display: flex;
			justify-content: center; /* Center horizontally */
			align-items: center; /* Center vertically (optional, if height is set) */
			margin-top: 20px; /* Optional: add space above */
		}


		.success-box {
			
			background-color: #d4edda;
			color: #155724;
			border: 1px solid #c3e6cb;
			padding: 10px;
			border-radius: 5px;
			margin-bottom: 20px;
			text-align: center;
		}
		
		import_body {
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            background-color: #f4f4f9;
        }

        import_h1 {
            color: #333;
            font-size: 24px;
            margin-bottom: 20px;
        }
		
		
		.progress {
            padding: 10px 20px;
            background-color: #f0ad4e;
            color: #fff;
            border-radius: 5px;
            font-size: 18px;
            margin-top: 10px;
        }

         .complete {
        background-color: #d4edda; /* Light green background */
        border: 1px solid #c3e6cb; /* Border in a slightly darker green */
        color: #155724; /* Dark green text */
        padding: 15px; /* Some padding for better spacing */
        border-radius: 5px; /* Rounded corners */
        font-size: 16px; /* Adjust font size */
        margin-top: 20px; /* Space from the top */
        text-align: center; /* Center text */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Slight shadow */
		}

        #spinner {
            margin-top: 20px;
            width: 50px;
            height: 50px;
            border: 6px solid #f3f3f3;
            border-radius: 50%;
            border-top: 6px solid #3498db;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
		
		.account-choice {
			border: 2px solid #ccc;
			padding: 20px;
			margin: 10px 0;
			cursor: pointer;
			transition: background-color 0.3s ease;
		}

		.account-choice.selected {
			border-color: #4CAF50;
			background-color: #d4edda;
		}

		#saveButton {
			display: block;
			margin: 20px auto;
			padding: 10px 20px;
			background-color: #4CAF50;
			color: white;
			border: none;
			cursor: pointer;
			transition: background-color 0.3s ease;
		}

		#saveButton:hover {
			background-color: #45a049;
		}
		
		/* Styling for the input-pair container to display inputs and button in a row */
		.input-pair {
			
			align-items: center; /* Vertically center the items */
			margin-bottom: 15px;
			gap: 10px; /* Add space between the input boxes and button */
		}

		/* Styling for the input boxes */
		.input-pair input {
			width: 15%; /* Adjust width to fit more neatly */
			padding: 10px;
			border: 1px solid #ccc;
			border-radius: 5px;
			box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
			font-size: 14px;
		}

		/* Styling for the delete button */
		.delete-btn {
			background-color: #e74c3c;
			color: white;
			padding: 8px 12px;
			border: none;
			border-radius: 5px;
			cursor: pointer;
			text-decoration: none;
			font-size: 14px;
		}

		.delete-btn:hover {
			background-color: #c0392b;
		}
		

		.forgot-password-link {
			margin-top: 10px;
			text-align: center;
		}

		.forgot-password-link a {
			color: #007bff; /* Adjust to your preferred color */
			text-decoration: none;
		}

		.forgot-password-link a:hover {
			text-decoration: underline;
		}
		
		.strength-text {
			font-size: 0.9em;
			margin-top: 5px;
		}
	
	
		/* Styles specifically for terms and conditions page */
		/* General styling for terms content */
		.terms-content {
			font-family: Arial, sans-serif;
			color: #333;
			background-color: #ffffff;
			padding: 20px;
			max-width: 800px;
			margin: auto;
			border-radius: 8px;
			text-align: left; /* Left-aligns all text */
			padding-top: 80px;
		}

		/* Styling for each section with shaded background */
		.terms-content .section {
			background-color: #f7f7f7; /* Light grey background */
			border: 1px solid #ddd; /* Light border around the section */
			padding: 15px;
			margin-bottom: 20px;
			border-radius: 5px;
		}

		/* Headings styling within each section */
		.terms-content .section h2 {
			color: #444;
			margin-top: 0; /* Removes extra spacing at the top of each section */
		}

		/* List styling specific to terms content */
		.terms-content ul {
			list-style-type: disc;
			margin-left: 20px;
			padding-left: 20px;
		}

		.terms-content ul li {
			clear: both;
			margin-bottom: 8px;
		}

		/* Link styling */
		.terms-content a {
			color: #0066cc;
			text-decoration: underline;
		}

		/* Reset unwanted backgrounds and borders */
		.terms-content ul,
		.terms-content li,
		.terms-content p,
		.terms-content h1,
		.terms-content h2 {
			background: none !important;
			border: none !important;
		}

		
		

		.modal {
			display: none; /* Hidden by default */
			position: fixed;
			z-index: 1000;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			overflow: auto;
			background-color: rgba(0,0,0,0.4);
		}

		.modal-content {
			background-color: #fefefe;
			margin: 15% auto;
			padding: 20px;
			border: 1px solid #888;
			width: 60%;
			text-align: center;
		}

		.close {
			color: #aaa;
			float: right;
			font-size: 28px;
			font-weight: bold;
		}

		.close:hover, .close:focus {
			color: black;
			text-decoration: none;
			cursor: pointer;
		}

		.progress-container {
			width: 100%;
			background-color: #e0e0e0;
			height: 20px;
			border-radius: 10px;
			margin-top: 20px;
			overflow: hidden;
		}

		.progress-bar {
			height: 100%;
			width: 0%;
			background-color: #4caf50;
			border-radius: 10px;
			transition: width 0.3s ease;
		}
		
		/* Button Styles */
		.close-button {
			background-color: #4caf50;
			color: white;
			border: none;
			padding: 10px 20px;
			font-size: 16px;
			cursor: pointer;
			border-radius: 5px;
			transition: background-color 0.3s ease;
		}

		.close-button:hover {
			background-color: #45a049;
		}
		
		.pagination {
			display: flex;
			justify-content: center;
			margin: 20px 0;
		}

		.pagination a {
			padding: 10px 15px;
			margin: 0 5px;
			text-decoration: none;
			color: #007bff;
			border: 1px solid #ddd;
			border-radius: 5px;
		}

		.pagination a.active {
			background-color: #007bff;
			color: white;
			border: 1px solid #007bff;
		}

		.pagination a:hover {
			background-color: #0056b3;
			color: white;
		}


    </style>