/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

/* Body background */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #000; /* black */
}

/* Main container */
.wrapper {
  width: 420px;
  background: #111;
  color: white;
  border-radius: 10px;
  padding: 30px 40px;
  box-shadow: 0 0 15px rgba(128, 0, 128, 0.3);
}

/* Title */
.wrapper h1 {
  font-size: 36px;
  text-align: center;
  color: #b48cff; /* purple */
  margin-bottom: 20px;
}

/* Input field container */
.input-box {
  position: relative;
  margin: 25px 0;
  width: 100%;
  height: 50px;
}

/* Input style */
.input-box input {
  width: 100%;
  height: 100%;
  background: #222;
  border: 2px solid #b48cff;
  border-radius: 40px;
  font-size: 16px;
  color: white;
  padding: 0 45px 0 20px;
  outline: none;
}

/* Placeholder color */
.input-box input::placeholder {
  color: #aaa;
}

/* Icons in inputs */
.input-box i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #b48cff;
  cursor: pointer;
}

/* Remember & Forgot section */
.remember-forgot {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  margin: -10px 0 15px;
}

/* Checkbox */
.remember-forgot label input {
  accent-color: #b48cff;
  margin-right: 5px;
}

/* Link style */
.remember-forgot a {
  color: #b48cff;
  text-decoration: none;
}

.remember-forgot a:hover {
  text-decoration: underline;
}

/* Login button */
.btn {
  width: 100%;
  height: 45px;
  background: #b48cff;
  border: none;
  border-radius: 40px;
  box-shadow: 0 0 10px rgba(180, 140, 255, 0.3);
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #9a6dff;
}

/* Register link */
.register-link {
  font-size: 14.5px;
  text-align: center;
  margin: 20px 0 15px;
}

.register-link p a {
  color: #b48cff;
  text-decoration: none;
  font-weight: 600;
}

.register-link p a:hover {
  text-decoration: underline;
}