body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;

}
html, body {
    height: 100%;
  }
  #page-content {
    flex: 1 0 auto;
  }
  footer {
    flex-shrink: 0;
  }
  .wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
.steps-container {
    width: 80%;
    max-width: 600px;
    background-color: transparent;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 0px 0px 8px 8px;
    margin: 0 auto;
}
.upper-header{
    width: 80%;
    max-width: 600px;
    background-color: white;
    padding: 5px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px 8px 0px 0px;
    margin: 0 auto;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

button, input, select {
    display: block;
    margin-top: 10px;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

input, select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
   margin-bottom: 10px;
}

.typing-indicator {
    color: gray;
    margin-top: 10px;
    display: none;
}
.next-btn {
    margin: 0 auto;
    width: 100%;
    background: rgb(0, 102, 255);
    color: rgb(255, 255, 255);
 
}
.profile{
    width: 5em;
    height: 5em;
    border-radius: 50px;
}
.online{
    color: gray;
    font-size: 14px;
    font-weight: 100;
}
.online img{
    width: 15px;
}
.checkbox-container {
    display: flex;
    align-items: flex-start;
}
.SecondCheck {
    margin-top: 0.3rem;
    margin-right: 0.5rem;
}

footer{
    width: 100%;
    margin: 0 auto;
}
.form-check-label{
    text-align: justify;
    font-size: 14px;
}

.typing-indicator {
    display: flex;
    align-items: center;
    margin-top: 10px;
  }

  .typing-indicator span {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 2px;
    background: #333;
    border-radius: 50%;
    opacity: 0;
    animation: typingIndicator 1.5s infinite;
  }

  .typing-indicator span:nth-child(1) {
    animation-delay: 0s;
  }

  .typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
  }

  .typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
  }
.form-check a{
  color: cornflowerblue !important;
}
  @keyframes typingIndicator {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  .step {
    display: none;
  }

  .step.active {
    display: block;
  }

  .hidden {
    display: none !important;
  }
  .bot-message{
    display: none !important;
  }
@media (max-width:600px){
  
footer{
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
    .steps-container ,.upper-header{
        width: 90%;

    }
    .online {
        font-size: 12px;
        font-weight: 100;
    }
    .online img {
        width: 10px;
    }
  
}