* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  overflow: hidden;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
#goRegisterBtn {
  color: black;
}
#preloader.hidden {
  opacity: 0;
  pointer-events: none;
}
#vanta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.panel-container {
  position: relative;
  width: 100%;
  height: 100%;
}
#welcomePanel {
  width: 650px;
}
.panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 450px;
  max-width: 90%;
  padding: 30px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 1;
}
@media (max-width: 768px) {
  .panel {
    width: 90%;
  }
}
.hiddenLeft {
  transform: translate(-150%, -50%);
  opacity: 0;
  pointer-events: none;
}
.hiddenRight {
  transform: translate(150%, -50%);
  opacity: 0;
  pointer-events: none;
}
.visible {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: all;
}
.welcome-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 200px;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.text-block h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.text-block h2 {
  font-size: 1.5rem;
  color: #c4c4c4;
}
.line {
  align-self: stretch;
  width: 3px;
  background-color: #FF1493;
}
.buttons-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  min-width: 180px;
}
.btn,
.btn2 {
  border: none;
  border-radius: 30px;
  padding: 15px 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  width: 180px;
}
.btn {
  background: linear-gradient(135deg, #ff7e5f, #fd3a84);
  box-shadow: 0 4px 10px rgba(253, 58, 132, 0.4);
}
.btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
.btn2 {
  border: 3px solid transparent;
  background: linear-gradient(#121212, #121212) padding-box,
              linear-gradient(135deg, #ff7e5f, #fd3a84) border-box;
  color: #ffffff;
}
.btn2:hover {
  transform: translateY(-2px);
}
.info-text {
  color: #838383;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .line {
    display: none;
  }
  .text-block {
    text-align: center;
    min-width: auto;
  }
  .text-block h1 {
    font-size: 1.5rem;
  }
  .text-block h2 {
    font-size: 1.2rem;
  }
  .buttons-block {
    align-items: center;
    min-width: auto;
  }
}
#loginPanel h1 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}
#loginPanel .info-text {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #c4c4c4;
}
.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.login-form input {
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  border: 2px solid #fd3a84;
  background: #000;
  font-size: 1rem;
  outline: none;
  color: #fff;
  text-align: center;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.login-form input:focus {
  box-shadow: 0 0 8px rgba(253, 58, 132, 0.6);
  border-color: #fd3a84;
}
.login-form button {
  border: none;
  background: linear-gradient(135deg, #ff7e5f, #fd3a84);
  color: #fff;
  padding: 15px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.login-form button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
.sign-up-text {
  font-size: 0.9rem;
  color: #c4c4c4;
}
.sign-up-text a {
  color: #ff5f9c;
  text-decoration: underline;
}
.sign-up-text a:hover {
  color: #fff;
}
#registerPanel h1 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}
#registerPanel .kyc-text {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #c4c4c4;
}
.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.register-form input {
  text-align: center;
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  border: 2px solid #fd3a84;
  background: #000;
  font-size: 1rem;
  outline: none;
  color: #fff;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.register-form input:focus {
  box-shadow: 0 0 8px rgba(253, 58, 132, 0.6);
}
.register-form button {
  border: none;
  background: linear-gradient(135deg, #ff7e5f, #fd3a84);
  color: #fff;
  padding: 15px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.register-form button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
.login-text {
  font-size: 0.9rem;
  color: #c4c4c4;
}
.login-text a {
  color: #fd3a84;
  text-decoration: underline;
}
.login-text a:hover {
  color: #fff;
}
