/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0d0d0d; /* Black background */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Center Card */
.wrap {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

.card {
  background: #1a1a1a; /* dark gray-black */
  border: 2px solid #ff1a1a; /* Red border */
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.25);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.card:hover {
  box-shadow: 0 12px 30px rgba(255, 0, 0, 0.4);
}

/* Heading */
.card h1 {
  font-size: 26px;
  margin-bottom: 8px;
  color: #ff3333; /* Red */
}

/* Subtext */
.muted {
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Input Fields */
label {
  display: block;
  text-align: left;
  margin-bottom: 6px;
  font-weight: 600;
  color: #ffffff;
}

input[type="tel"],
input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid #333;
  border-radius: 10px;
  background: #111;
  color: #fff;
  transition: border 0.3s, background 0.3s;
}

input:focus {
  outline: none;
  border: 1px solid #ff3333;
  background: #1c1c1c;
}

/* Button */
button.btn {
  width: 100%;
  padding: 12px;
  background: #ff1a1a;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

button.btn:hover {
  background: #e60000;
  transform: scale(1.03);
}

/* Links */
.link {
  color: #ff3333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Footer */
.foot {
  margin-top: 16px;
  font-size: 14px;
}

/* Alert Box */
.alert {
  background: rgba(255, 26, 26, 0.15);
  border: 1px solid #ff3333;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 15px;
  color: #ff9999;
  font-size: 14px;
}
