/* Page auth (login / choisir entreprise) */
.auth-body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a6d96, #0b84b8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}

.auth-wrapper {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

.auth-brand {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.auth-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  border-radius: 16px;
  background: #ffffff;
  color: #0b84b8;
  font-weight: 900;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-title {
  font-size: 18px;
  font-weight: 700;
}

.auth-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 15px 30px rgba(0,0,0,.15);
}

.auth-card h2 {
  margin-top: 0;
  margin-bottom: 16px;
  color: #0b84b8;
}

.auth-card form p {
  margin-bottom: 12px;
}

.auth-card input,
.auth-card select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.auth-card button {
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #0b84b8;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.auth-card button:hover {
  background: #0a6d96;
}
