@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

body {
  font-family: "Rubik", serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.auth-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  max-width: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.auth-step {
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.auth-step.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

input[type="email"], input[type="password"], input[type="text"], input[type="file"] {
  width: calc(100% - 20px);
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  margin-bottom: 20px;
}

button[type="button"], button[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #EB8546;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="button"]:hover, button[type="submit"]:hover {
  background-color: #c46c36;
}

.login-option {
  margin-top: 10px;
  text-align: center;
}

.login-option p {
  font-size: 14px;
  color: #555;
}

.login-option button {
  background: none;
  border: none;
  color: #EB8546;
  cursor: pointer;
  text-decoration: underline;
  font-size: 14px;
  padding: 0;
  margin-left: 5px;
}

.login-option button:hover {
  color: #c46c36;
}
