* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Inter';
}
body {
  overflow: hidden;
  min-height: 100dvh;
  display: flex;
  flex-direction: column; /* Stack children vertically */
  background-image: linear-gradient(
    118.68deg,
    rgba(250, 111, 64, 0.1) -23.45%,
    rgba(211, 201, 233, 0.2) 25.94%,
    rgba(248, 248, 249, 0.4) 75.33%
  );
  justify-content: space-between;

  /* padding: 0 1rem; */
}
.navbar {
  display: flex;
  align-items: baseline;
  padding: 0.5rem 2rem;
  border: 1px solid #d3c9e9;
  overflow: hidden;
  color: #943535;
  width: 100%;
}

.navbar .left {
  display: flex; /* Add flex display to the left div */
  align-items: center; /* Align items vertically */
}
.logo {
  display: flex !important;
  align-items: baseline;
  text-decoration: none;
  gap: 0.25rem;
}
.logo img {
  width: 32px;
}
.logo-text {
  color: #583b91;
  font-weight: 700;
  font-size: 14px;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center; /* Center items horizontally */
  text-align: center;
  width: 100%;
  flex: 1;
  padding: 1rem 2rem;
  gap: 4rem;
}
.title p {
  font-size: 28px;
  /* margin-bottom: 1em; */
  font-weight: 600;
  color: #2c3e50; /* Dark blue */
}
.message-text {
  font-size: 13px;
  color: #7f8c8d !important; /* Gray */
}
.help {
  color: #95a5a6; /* Light gray */
  font-size: 12px;
}
.forms-container {
  max-width: 850px;
  min-width: 600px;
  border-radius: 15px;
  background-color: white;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25); */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.verify-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 320px;
}
.verify-form .input-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.5rem;
}

.verify-form label {
  margin-left: 0.2rem;
  color: #666666;
  display: none;
}

.verify-form input {
  width: 100%;
  min-width: 320px;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  color: #242424e0;
}
.submit-btn {
  width: 100%;
  max-width: 200px;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  align-self: center;
  border: none;
  margin-top: 1rem;
  background-color: #fa6f40;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.verify-form .submit-btn:hover {
  background-color: #dd5021;
  transform: scale(1.1);
}
footer {
  /* Set the width to 95% */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  width: 100%;
}
footer a {
  color: #0266d6;
  font-weight: 100;
}

.left {
  display: flex;
  align-items: center;
}

.left p {
  opacity: 35%;
  margin-right: 20px; /* Add margin between elements */
}

.right {
  display: flex;
  align-items: center;
}

.right a {
  margin-left: 20px; /* Adjust spacing between links */
}

@media only screen and (max-width: 600px) {
  .container {
    padding: 1rem 0.5rem;
  }
  .forms-container {
    min-width: 100%;
  }
  .verify-form {
    min-width: 100% !important;
  }
  form input {
    min-width: 100% !important;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .left,
  .right {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .right a {
    margin-left: 0;
  }
}
