@import url('https://fonts.cdnfonts.com/css/rockstrike');

/* Content section */
.captcha-content {
  max-width: 90%;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.85);  /* Light white background with slight transparency */
  border-radius: 15px;
  /*box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);*/
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin:auto;
}


.content {
  max-width: 70%;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.85);  /* Light white background with slight transparency */
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin:auto;
}

.content:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

/* Title */
.title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00838F;  
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  animation: slideInFromTop 1s ease-out;
}

.title > a {
  text-decoration:none;
}
.title > a > .title-hindi {
  font-size: 3.5rem;
  display:inline;
}

.title > a > .title-english {
  font-size: 2.5rem;
  display:inline;
}


.text-right{text-align:right;}

.title-full{
	font-size:1.6rem;
        /*color:#da4167;*/
        /*color:#ffa630;*/
        color:#4d9de0;
	text-transform: none;
	/*font-family: 'Century Funky', sans-serif;*/
}

.logo-header > img{width:4%}


/* Tagline */
.tagline {
  font-size: 2rem;
  /*font-weight: bold;*/
  /*color: #f39c12; */
  /*color: #e84e99;  */
  color: #553f3a;  
  margin-bottom: 25px;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeInText 1.5s 0.5s forwards;
  font-family: 'Rockstrike', 'Drexs','Century Funky','Tangerine', 'A Cursive', sans-serif;
  font-size: 2.5rem;
  font-style:italic;
  /*text-decoration:underline;*/
  text-transform: none;
}

/* Description Text */
.description {
  font-size: 1.1rem;
  color: #8a8a8a; /* Soft gray for the description */
  line-height: 1.6;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInText 1.5s 1s forwards;
}

/* Call-to-Action Button */
.cta-btn {
  font-size: 1.2rem;
  padding: 12px 25px;
  background-color: #f39c12;  /* Gold color for the button */
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
  background-color: #d35400; /* Darker orange/gold for hover */
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideInFromTop {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInText {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
/* Responsive design */
@media (max-width: 768px) {
  .title {
    font-size: 2.8rem;
  }
  .tagline {
    font-size: 1.6rem;
  }
  .description {
    font-size: 1rem;
  }
}

