



*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  /* background: linear-gradient(135deg, #4D96FF, #FF6B6B); */
  background: linear-gradient(120deg, #FF9A8B, #FF6A88, #FF99AC);
  /* background: linear-gradient(135deg, #6BCB77, #FFD93D); */
  /* background: linear-gradient(135deg, #1B262C, #4D96FF, #C77DFF); */
  /* background: linear-gradient(135deg, #F9F9F9, #C77DFF, #4D96FF); */
  /* background: linear-gradient(135deg, #2E3192, #1BFFFF); */
  /* background: linear-gradient(135deg, #C33764, #1D2671);  */
  /* background: linear-gradient(135deg, #00DBDE, #FC00FF); */
  /* background: linear-gradient(135deg, #89F7FE, #66A6FF); */
  /* background-color: #F9D7E2; */
  /* background-color: #F5EDE8; */
  /* background-color:blue; */








  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

section{
  display: none;
  flex-direction: column;
  align-items: center;
  /* background: #243b55; */
  background-color: palevioletred;
  /* background: linear-gradient(120deg,#FF9A8B , #FF6A88, #FF99AC); */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  width: 350px;
}

section.active{
  display: flex;
}

h2{
  margin-bottom: 15px;
}

.input-group input{
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border: none;
  border-radius: 5px;
  outline: none;
}

button{
  background: red;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}
button:hover{
  background: lightcoral;
}

ul{
  list-style: none;
  margin-top: 15px;
  width: 100%;
}

ul li{
  background: #2c3e50;
  margin: 5px 0;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  text-align: left;
}

ul li:hover{
  background: #3b4a5a;
}

.correctAns{
  background: green !important;
}

.wrongAns {
  background: red !important;
}

.disableli {
  pointer-events: none;
  opacity: 0.7;
}

.result {
  text-align: center;
}

.circlar-progress{
  position: relative;
  height: 120px;
  width: 120px;
  background: conic-gradient(#182848 0deg, #ededed 0deg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 20px auto;
}

.circular-progress::before{
  content: "";
  position: absolute;
  height: 100px;
  width: 100px;
  background-color: palevioletred;
  border-radius: 50%;
  
}

.progress-value{
  position: relative;
  font-size: 20px;
  font-weight: bold;
}

.pass-para{
  color: lightgreen;
  font-weight: bold;
}

.fail-para{
  color: red;
  font-weight: bold;
}
.formwrapper{
  display: flex;
}

