@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0b0e15 0%, #101725 100%);
  margin: 0;
  color: #dfe6ee;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.login-wrapper {
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 0 40px rgba(0, 255, 204, 0.08);
  transition: all 0.3s ease;
}

.login-wrapper:hover {
  box-shadow: 0 0 45px rgba(0, 255, 204, 0.15);
  transform: translateY(-2px);
}

.signin-logo {
  text-align: center;
  margin-bottom: 15px;
}

.signin-logo img {
  width: 55%;
  max-width: 200px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.4));
}

.tx-center {
  text-align: center;
}

input.form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  margin-bottom: 15px;
  transition: all 0.25s ease;
}

input.form-control:focus {
  border-color: #00ffcc;
  box-shadow: 0 0 8px rgba(0, 255, 204, 0.3);
  outline: none;
}

.btn-success {
  width: 100%;
  background: linear-gradient(90deg, #00ffcc, #00b3ff);
  border: none;
  border-radius: 10px;
  padding: 12px;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-success:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
}

.tx-info {
  color: #00ffcc;
  text-decoration: none;
}

.tx-info:hover {
  text-decoration: underline;
}

.link-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 5px;
}

.tx-12 {
  font-size: 12px;
  color: #9ba4b4;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
.text-success {
  font-size: 12px;
  color: #10d641;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.mg-t-40 {
  margin-top: 30px;
}

.sponsor {
  display: block;
  text-align: center;
  color: #ff6464;
  margin-bottom: 10px;
}

::placeholder {
  color: #bbb;
  opacity: 0.8;
}

@media (max-width: 480px) {
  .login-wrapper {
    padding: 25px 20px;
    border-radius: 12px;
  }

  input.form-control {
    font-size: 14px;
    padding: 10px 12px;
  }

  .btn-success {
    padding: 10px;
    font-size: 15px;
  }

  .signin-logo img {
    width: 60%;
  }
}
