/* Outer background */
.login-bg {
  background: #000 url('../img/login-bg.png') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
}
/* Container */
.login-wrapper {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

/* Card with softer shadow, no hover animation */
.login-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Logo area */
.logo-wrapper {
  background: #000;
  padding: 28px 0 18px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  text-align: center;
}

.login-brand-logo {
  max-width: 220px;
  height: auto;
}

/* Form area */
.login-body {
  padding: 30px 28px;
}

h4 {
  font-weight: 700;
  font-size: 20px;
  color: #222;
  margin-bottom: 0.25rem;
}

p.text-muted {
  font-size: 14px;
  margin-bottom: 1.5rem;
  color: #777;
}

/* Inputs */
.form-control {
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: #ff3c3c;
  box-shadow: 0 0 0 2px rgba(255, 60, 60, 0.2);
  background-color: #fff;
}

/* Button */
.btn-danger {
  background-color: #ff3c3c;
  border: none;
  padding: 12px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.btn-danger:hover {
  background-color: #e03131;
}

/* Sign up link */
.signup-link {
  color: #ff3c3c;
  font-weight: 500;
  text-decoration: none;
}

.signup-link:hover {
  text-decoration: underline;
}
