/* ===== Login Page ===== */

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  width: 100%;
  max-width: 400px;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

.logo-wrapper {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -60px auto 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
}

.logo-wrapper img {
  max-width: 60px;
}

.form-control {
  padding: .75rem;
}

.btn-primary {
  padding: .75rem;
  font-weight: 500;
}
