:root {
  --primary: #0d86ff;
  --primary-dark: #0a6ee6;
  --gray-text: #8c98a4;
  --outline-border: rgba(13,134,255,0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Vazirmatn", sans-serif;
  background: #f6f8fa;
  color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 100vh;
}

.container {
  max-width: 420px;
  width: 100%;
  text-align: center;
}

/* لوگو گرد */
.logo-circle {
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  background: #e4ebf5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 140%;
  height: 140%;
  object-fit: cover;
  border-radius: 50%;
}

/* تیترها و متن */
.title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.subtitle {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 16px;
}

.desc {
  font-size: 14px;
  color: #7d8897;
  margin: 0 auto 26px;
  max-width: 320px;
  line-height: 1.6;
}

/* دکمه‌ها */
.actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  padding: 16px 0;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  border-radius: 32px;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn.primary {
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
}

.btn.outline {
  background: #fff;
  color: var(--primary);
  border: 1.8px solid var(--outline-border);
}

/* نوشته پایین */
.note {
  font-size: 13px;
  color: #a0aab8;
}

.form-container {
  max-width: 420px;
  margin: 0 auto;
  padding: 32px 20px;
  text-align: center;
}

.form-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

.form-box {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-box input {
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #ccd6e0;
  border-radius: 12px;
  outline: none;
  transition: border 0.2s ease;
}

.form-box input:focus {
  border-color: var(--primary);
}

.form-box .btn {
  margin-top: 10px;
}

