*{
    margin: 0;
    padding: 0;
}
h1{
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}
h2{
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}
h3{
    color: gold;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}
h4{
    color: gold;
    font-size: 20px;
    text-align: start;
    font-weight: bold;
}
p{
    color: #fff;
    /* word-spacing: 5px; */
}
a{
    color: #32A9E1;
}
body{
  background-color: black;
}
.quiz{
    background-image: url('img/Background-scaled-1.webp'); 
    /* background-color: #000; */
    background-size: cover;
    background-repeat: no-repeat;
}
.login-form {
    width: 400px;
    margin: 10px auto; /* center vertically and horizontally */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .login-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .login-form button {
    width: 100%;
    padding: 10px;
    background: #1A3946;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10PX;
  }
  
  .login-form .social-icons {
    margin-top: 15px;
  }
  
  .login-form .social-icons a {
    margin: 0 10px;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
  }
  .grw{
    width: 900px;
    margin: 0px auto; /* center vertically and horizontally */
    padding: 10px;
    border-radius: 10px;
    text-align: start;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-bottom: 2px solid #fff;
  }

  @media only screen and (max-width: 476px){
.grw{
    width: 100%;
    margin: 0px;
    padding: 0px;
}  
p{
    text-align:justify;
    line-height: 28px;
}
.login-form {
    width: 100%!important;
    
}
}

 /*whatsaap*/
 .float {
    position: fixed;
    width: 50px;
    height: 50px;
    /* bottom: 20px; */
    right: 35px;
    background: linear-gradient(
      90deg,
      rgb(55, 223, 97) 0%,
      rgb(9, 187, 3) 100%
    );    
    color: #fff !important;
    bottom: 80px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
  }
  .bb{
    color: #fff;
  }
  .my-float {
    margin-bottom: 8px;
    margin-top: 1px;
    margin-left: 1px;
    font-size: 30px;
  }
  /*whatsaap end*/ 

 /*telegram*/
 .float2 {
    position: fixed;
    width: 50px;
    height: 50px;
    /* bottom: 20px; */
    right: 35px;
    background: linear-gradient(
        #32A9E1
    );    
    color: #fff !important;
    bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
  }
  .bb2{
    color: #fff;
  }
  .my-float2 {
    margin-bottom: 8px;
    margin-top: 1px;
    margin-left: 1px;
    font-size: 30px;
  }
  /*telegram end*/ 
  
  .login-table-container {
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.login-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1c1c1c;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
  border-radius: 6px;
  overflow: hidden;
}

.login-table th {
  background-color: #000;
  padding: 12px 15px;
  text-align: left;
  font-weight: bold;
}

.login-table td {
  padding: 12px 15px;
  vertical-align: middle;
}

.login-table tbody tr:nth-child(even) {
  background-color: #2a2a2a;
}

/* faq section */
.faq-section {
  max-width: 800px;
  margin: 20px auto;
  padding: 10px;
  font-family: "Segoe UI", sans-serif;
 
}
.container{
  /* background-color: black; */
}
.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.container .faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
   color: #fff;
}

.faq-question .icon {
  transition: transform 0.3s ease;
  font-weight: bold;
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}

.faq-answer p {
  margin: 10px 0;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* enough for content */
  padding: 10px 0;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
  content: "–";
}