* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;color: black;
}

body {
  height: 100vh;
  background: url(images/img.webp) no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-width: 350px;
  width: 100%;
  color: black;
}

/* Login Box */
.login-box {
  text-align: center;
  color: #fff;
}

.login-box .avatar {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.login-box h2 {
  margin-bottom: 30px;
}

/* Input Groups */
.input-group {
  position: relative;
  margin-bottom: 25px;
  text-align: left;
}

.input-group input {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  color: #fff;
  outline: none;
}

.input-group label {
  position: absolute;
  top: 10px;
  left: 5px;
  color: #ccc;
  transition: 0.3s ease;
}

.input-group input:focus ~ label,
.input-group input:valid ~ label {
  top: -12px;
  left: 0;
  font-size: 12px;
  color: #00f;
}

/* Button */
button {
  width: 100%;
  padding: 10px;
  background: #00f;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #0055ff;
}

/* Signup Link */
.signup {
  margin-top: 15px;
  font-size: 14px;
  color: #eee;
}

.signup a {
  color: #00f;
  text-decoration: none;
}
label{
    border-color: black;
}
}

button:hover {
  background: #0055ff;
}
/* Login Link */
.login {
  margin-top: 15px;
  font-size: 14px;
  color: #eee;
}

.login a {
  color: #00f;
  text-decoration: none;
}