body {
  background: url("normal.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

h1 {
  padding: 10px;
  margin: 15px;
  font-size: 3rem;
  color: #fefbfb;
}

h2 {
  padding: 10px;
  margin: 15px;
  color: #faf7f7;
  font-size: 2rem;
}

/* Chatbot Button Style */
.chatbot-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #007bff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  overflow: hidden;
}

.chatbot-button img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* Chatbot Window Style */
.chatbot-window {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  max-height: 500px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
}

.chatbot-header {
  background-color: #007bff;
  color: white;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-align: center;
}

.chatbot-body {
  padding: 10px;
  overflow-y: auto;
  flex-grow: 1;
}

.chatbot-footer {
  padding: 10px;
  border-top: 1px solid #ddd;
}

/* Form Container Style */
.form-container {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  padding: 30px;
  width: 500px;
  margin: auto;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #007bff;
}

.btn-primary {
  background-color: #007bff;
  border: none;
}

.switch-link {
  color: #007bff;
  cursor: pointer;
  text-align: center;
  display: block;
  margin-top: 15px;
}

/* Form Group Style */
.form-group {
  position: relative;
}

.form-group i {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  color: black;
}

.form-control {
  padding-left: 20px; /* Adjust padding to accommodate the icon */
  height: 40px; /* Set a consistent height for the input fields */
}

/* Row Alignment for Inline Fields */
.inline-fields {
  display: flex;
  justify-content: space-between;
}

.inline-fields .form-group {
  width: 35%;
}

/* Fix for Input Fields and Icon Alignment */
.row .col-md-6, .row .col-md-3 {
  position: relative;
}

.row .col-md-6 i, .row .col-md-3 i {
  position: absolute;
  left: 13px;
  top: 53%;
  transform: translateY(-50%);
  z-index: 1;
  color: black;
}

.row .col-md-6 .form-control, .row .col-md-3 .form-control {
  padding-left: 22px;
}
