.form-container {
  position: relative;
  margin-block: 20px;
  width: 50%;
  min-width: 250px;
  margin: auto;
  margin-top: 2rem;
}

input {
  width: 100%;
  padding: 10px 15px;
  padding-right: 100px; /* Space for the button */
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
}

button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1a1f36;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  cursor: pointer;
  font-weight: 500;
}

button:hover {
  background-color: #2c3248;
}

@media (max-width: 768px) {
  .form-container {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .form-container {
    width: 100%;
  }
}
