

/* .parent{
    width: 750px;
    margin: 10%;
    padding: 20px;
      justify-content: center;
   align-items: center;
}

 h1{
    text-align: start;
 }

 input[type='email'],
 
  input[type="password"],
  button {
    display: block;
    width: 55%;
    margin-bottom: 10px;
  }
  
  button {
    background-color: #4CAF50;
    color: white;
    border-radius: 12px 15px 14px ;
    padding: 10px;
  }
    */

    
    
    


    /* style.css */
/* .container {
  background-color:#f3a6a639; 
  padding: 20px;
  border: 1px solid #f3a6a682; 
  border-radius: 5px; 
  margin-top: 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
}

.form-label {
  display: block; 
  margin-bottom: 8px;
}

.custom-input {
  width: 85%; 
  padding: 8px; 
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 16px; 
} */








/* quiz start */




/* styles.css */
body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.quiz-heading {
  text-align: center;
  margin-bottom: 20px;
  color: #007bff;
}

.timer {
  text-align: center;
  font-size: 20px;
  color: #555;
  margin-bottom: 20px;
}

.question {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.options {
  display: flex;
  flex-direction: column;
}

.options label {
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 5px;
  background-color: #f0f0f0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.options label:hover {
  background-color: #e0e0e0;
}

.option {
  margin-left: 10px;
}

.next-button {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.next-button:hover {
  background-color: #0056b3;
}


#result {display: none;}
