/* login_style.css */
body {
  background-color: #0a0b0a;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #ff6b00;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

html {
  height: -webkit-fill-available;
}

.alert-box {
  position: fixed;
  top: -100px; /* Changed from bottom to top */
  left: 50%;
  transform: translateX(-50%);
  background-color: #2e3b71;
  color: #a0d1ff;
  padding: 10px;
  border-radius: 5px;
  opacity: 0;
  transition: top 0.3s ease, opacity 0.3s ease; /* Changed bottom to top in transition */
  width: 300px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.alert-box.show {
  top: 20px; /* Changed from bottom to top */
  opacity: 1;
}

.container {
  width: 400px;
  padding: 40px;
  background-image: url(lsi.jpg);
  border: 1px solid #ff6b00;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.2);
  text-align: center;
}

@keyframes blink-border {
  0%, 100% {
    border-color: #ff6b00;
  }
  50% {
    border-color: #ffb293;
  }
}

.blinking-border {
  animation: blink-border 0.05s infinite;
}

.logo {
  margin-bottom: 20px;
}

.logo img {
  max-width: 100%;
  height: auto;
}

.form-container {
  position: relative;
  margin-top: 20px;
  transition: height 0.3s ease-in-out;
}

.form-container.login-active {
  height: 220px;
}

.form-container.signup-active {
  height: 360px;
}

.form-toggle {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.form-toggle span {
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 3px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.form-toggle .active {
  background-color: #ff6b00;
  color: #0a0b0a;
}

form {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

form.active {
  display: block;
  opacity: 1;
}

h2 {
  margin-bottom: 20px;
}

h3 {
  margin-bottom: 10px;
  color: #aa4805;
}

input {
  width: 95%;
  text-align: center;
  font-size: 16px;
  padding: 8px;
  margin-bottom: 10px;
  background-color: rgba(10, 11, 10, 0.3);
  color: #ff6b00;
  border: 1px solid #ff6b00;
  border-radius: 3px;
  transition: box-shadow 0.3s ease, opacity 0.3s ease-in-out;
}

input:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(255, 107, 0, 0.5);
}

input::placeholder {
  color: #aa4802;
}

button {
  width: 100%;
  padding: 10px;
  margin-top: 24px;
  background-color: #ff6b00;
  color: #0a0b0a;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
  background-color: #ff8c33;
  box-shadow: 0 0 5px rgba(255, 107, 0, 0.5);
}

.traditional-login, .crypto-wallet-login {
  display: none;
}

.traditional-login.active, .crypto-wallet-login.active {
  display: block;
}

.login-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px; /* Adjust as needed */
}

.toggle-button {
  width: 45%;
  padding: 10px;
  background-color: #0f0f0f;
  color: #bb9e8c;
  border: 1px solid #ff6b00;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
}

.toggle-button:hover {
  background-color: #18253f; /* Darker shade on hover */
}


.toggle-button.active {
  color: #ff6b00;
}