@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  background: #0e1116;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  gap: 40px;
  flex-wrap: wrap;
}

.auth-box {
  background: #181c22;
  padding: 40px;
  border-radius: 12px;
  width: 350px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.logo {
  width: 150px;
  display: block;
  margin: 0 auto 20px auto;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.tabs a, .tabs span {
  color: #bbb;
  font-weight: 600;
  text-decoration: none;
}

.tabs .active {
  color: #f37928;
  border-bottom: 2px solid #f37928;
}

.input-group {
  margin-bottom: 18px;
}

label {
  font-size: 0.9rem;
  display: block;
  margin-bottom: 6px;
  color: #ccc;
}

input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
  background: #22262e;
  color: #fff;
}

.btn {
  width: 100%;
  padding: 12px;
  background: #f37928;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-top: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #ff7b29;
}

.switch {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #bbb;
}

.switch a {
  color: #f37928;
  text-decoration: none;
}

.notice-box {
  background: #181c22;
  padding: 25px;
  border-radius: 12px;
  max-width: 350px;
  color: #ff6b6b;
}

.notice-box h3 {
  color: #ff6b6b;
  margin-top: 0;
}