:root {
	--white-color: white;
	--dark-color: darkgrey;
	--light-gray-color: #c1c7c9;
	--line-border-fill: #8DC540;
	--padding: 20px;
  }
body {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70vh;
	font-family: "poppins", sans-serif;

  }
  
  .container {
	width: 400px;
	height: 525px;
	margin: 2rem auto;
	background-color: var(--white-color);
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
	border-radius: 5px;
	position: relative;
  }
  h3 {
	text-align: center;
	margin-bottom: 1rem;
	color: var(--dark-color);
	font-size: 1.5rem;
  }
  .container form {
	width: 340px;
	position: absolute;
	top: 80px;
	left: 20px;
	font-family: inherit;
	transition: 0.5s ease-in;
  }
  form input {
	width: 100%;
	padding: 10px 5px;
	margin: 5px 0;
	border: 1px solid var(--light-gray-color);
	border-radius: 5px;
	background: transparent;
	font-family: inherit;
  }
  form input:focus {
	outline: none;
	border: 1px solid var(--dark-color);
  }
  .btn_box {
	width: 100%;
	margin: 30px auto;
	text-align: center;
  }
  form button {
	width: 110px;
	height: 35px;
	margin: 0 10px;
	background-color: var(--line-border-fill);
	border: none;
	outline: none;
	cursor: pointer;
	font-size: 0.9rem;
	font-family: inherit;
	border-radius: 5px;
	color: var(--light-gray-color);
  }
  form button:active {
	transform: scale(0.98);
  }
  .progress_container {
	width: 350px;
	display: flex;
	justify-content: space-between;
	margin: 2rem auto;
	position: relative;
	color: darkgray;
  }
  .progress_container::before {
	content: "";
	background-color: var(--light-gray-color);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	height: 4px;
	width: 100%;
	z-index: 1;
  }
  .progress {
	background-color: var(--line-border-fill);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	height: 4px;
	width: 0%;
	z-index: 1;
	transition: 0.4s ease-in;
  }
  .circle {
	background-color: #ECECEC;
	height: 30px;
	width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	z-index: 1;
	transition: 0.4s ease;
	border-color: black;

  }
  .circle.active {
	border-color: black;
	color: white;
	background-color: #8DC540;;
  }
.alert {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}
.custom-alert {
	width: 350px; /* Set the width as one-third of the container */
	margin: auto; /* Center the alert horizontally */
	padding: 30px;
}
.checkmark-container {
	display: none;
	text-align: center;
	color: green;
}
.checkmark {
	font-size: 50px;
}
body {
	margin: 0;
	overflow: hidden;
}

canvas {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none; /* Allow interaction with elements below the canvas */
	background-color: transparent; /* Make the canvas background transparent */
}
form {
padding-left: 20px; 
}