@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at center, #0b0f19 0%, #000 100%);
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.splash-container {
  text-align: center;
  position: relative;
  animation: fadeIn 1s ease forwards;
}

.logo-wrapper {
  animation: float 3s ease-in-out infinite;
}

.splash-logo {
  width: 110px;
  height: 110px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.3));
}

.app-name {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin: 5px 0;
}

.app-subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 25px;
  color: #c5c5c5;
}

.connect-btn {
  background: linear-gradient(90deg, #ffd700, #e4b400);
  border: none;
  color: #000;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.connect-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.glow {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.wallet-info {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  border-radius: 12px;
  display: inline-block;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hidden {
  display: none;
}

.splash-footer {
  position: absolute;
  top: 300px;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Basic styling for all text-based input fields */
input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #aeba06;
  border-radius: 5px;
  font-size: 16px;
}

/* Styling for focused input fields */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #aeba06;
  box-shadow: 0 0 5px rgba(212, 255, 0, 0.5);
  outline: none; /* Remove default browser outline */
}

/* Styling for placeholder text */
input::placeholder {
  color: #999;
}

/* Styling for submit button */
input[type="submit"] {
  background-color: linear-gradient(90deg, #ffd700, #e4b400);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

input[type="submit"]:hover {
  background-color: linear-gradient(90deg, #877a34, #4c4014);
}
.spiner {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 3s linear infinite;
    }
    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* To hide */
.hide-div {
  display: none;
}

/* To show */
.show-div {
  display: block; /* Or inline, inline-block, flex, etc., depending on desired display behavior */
}
