/* Kurs kartı hover overlay */
.course-card { position: relative; }
.course-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 32, 96, .16);
  backdrop-filter: blur(1px);
  text-decoration: none;
}

/* Mövzu siyahısı görünüşü */
.topic-list { list-style: disc; padding-left: 1.25rem; color: #334155; }
.topic-list li { margin-bottom: .5rem; }

/* FORM — daha baxımlı, mərkəzli */
.form-card{
  max-width: 720px;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(2, 6, 23, .08);
  border: 1px solid rgba(30, 64, 175, .10);
}
.form-label{
  display:block; font-size:.875rem; color:#475569; margin-bottom:.25rem;
}
.form-input{
  width:100%;
  border:1px solid #cbd5e1;
  border-radius:.875rem;
  padding:.625rem .875rem;
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.form-input:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 4px rgba(37, 99, 235, .15);
}
.btn-primary{
  display:inline-block;
  padding:.65rem 1.25rem;
  border-radius:.875rem;
  background:#1d4ed8;
  color:#fff; font-weight:600;
  box-shadow:0 8px 20px rgba(29,78,216,.25);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn-primary:hover{
  transform: translateY(-1px);
  background:#1e40af;
  box-shadow:0 10px 28px rgba(30,64,175,.30);
}

/* Mobil düzəlişlər */
@media (max-width: 640px){
  .course-card .h-28 { height: 80px; width: 80px; }
}
