/* Genel */
* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

/* Kart */
.card {
  width: 95vw;          /* mobilde ~%95 */
  max-width: 360px;     /* masaüstünde sınır */
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
}

/* Üst alan */
.head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #111827;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.subtitle {
  font-size: 12px;
  color: #6b7280;
}

/* Form */
label {
  display: block;
  font-size: 12px;
  color: #374151;
  margin: 10px 0 6px;
}

input[type="text"],
input[type="password"]{
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
  background: #fff;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0 16px;
}

.remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 12px;
}

.remember input {
  transform: scale(1.05);
}

.link {
  font-size: 12px;
  color: #4f46e5;
  text-decoration: none;
  white-space: nowrap;
}

.btn {
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  background: #111827;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.foot {
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  margin-top: 12px;
}
