.outer {
  position: relative;
  min-height: 100vh;
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background-color: #f0f0f0;
  margin-left: -20px;
}

.container {
  width: 600px;
  max-width: 90%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  position:relative;
  z-index:2;
}

.heading {
  text-align: center;
  margin-bottom: 2rem;
}

.input-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.label {
  margin-bottom: 5px;
  color: rgba(0, 0, 0, 0.8);
  font-weight: bold;
}

.input-text {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s;
  font-size: 1rem;
  flex: 1;
}

.input-text:hover,
.input-text:focus {
  border-color: #1a54e8;
}

.chatbotbtn {
  background-color: #1a54e8 !important;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1rem;
}

.chatbotbtn:hover {
  background-color: #1341c8;
}

.help {
  display: inline-block;
  padding: 0.5rem 0rem;
  margin-top: 1rem;
  color: #1a54e8;
}

.animated-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: gradientAnimation 15s linear infinite alternate;
  z-index: 1;
}

.add-apiKey{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
position:relative;

border:1px solid rgba(0,0,0,0.18);
box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
padding: 1rem 0rem;
border-radius:12px;

text-align:center;

}

.title{
font-size:1.5rem;
}
.add-api-btn{
font-size:1.2rem;

}

/* #wpcontent{
  margin-left: 140px;
} */

@keyframes gradientAnimation {
  0% {
    background: linear-gradient(45deg, rgba(38, 117, 255, 0.16430322128851538), rgba(121, 0, 255, 0.06346288515406162));
  }
  100% {
    background: linear-gradient(45deg, rgba(121, 0, 255, 0.06346288515406162), rgba(38, 117, 255, 0.16430322128851538));
  }
}