* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Vazirmatn, Tahoma, sans-serif;
  background: linear-gradient(135deg, #eef2f3, #d9e4ec);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.login-card {
  background: #ffffff;
  width: 360px;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  text-align: center;
}

.logo {
  font-family: "Yellowtail", cursive;
  font-size: 42px;
  color: #0f172a;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 24px;
}

input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  font-family: Vazirmatn, Tahoma, sans-serif;
}

input:focus {
  outline: none;
  border-color: #38bdf8;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: #0f172a;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  font-family: Vazirmatn, Tahoma, sans-serif;
}

button:hover { background: #020617; }

.msg{
  margin-top: 10px;
  font-size: 13px;
  color:#ef4444;
  min-height: 18px;
}

.login-footer {
  margin-top: 18px;
  font-size: 12px;
  color: #94a3b8;
}
