* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: radial-gradient(circle at top, #0d1117, #1a1a1a);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.container {
  background: #121212;
  padding: 45px 35px;
  border-radius: 20px;
  width: 380px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 255, 213, 0.15);
}

/* Logo */
.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 42px;
  color: #00ffd5;
  text-shadow: 0 0 6px #00ffd5;
  margin-bottom: 10px;
}

/* Title */
.title {
  font-size: 18px;
  color: #b0b0b0;
  margin-bottom: 25px;
}

/* Input Group */
.input-group {
  position: relative;
  margin-bottom: 22px;
}

.input-group input {
  width: 100%;
  padding: 12px 10px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #444;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}

.input-group label {
  position: absolute;
  left: 10px;
  top: 12px;
  color: #888;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s ease;
}

/* Floating label effect */
.input-group input:focus ~ label,
.input-group input:valid ~ label {
  top: -8px;
  font-size: 12px;
  color: #00ffd5;
}

.input-group input:focus {
  border-bottom: 2px solid #00ffd5;
}
.login-text{
    font-size: 14px;
    color: #b0b0b0;
    margin-top: 20px;
}
/* Button */
