body {
  background-color: #e6e7eaff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #374151;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
.card {
  background-color: #f6f6f6ff;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(100, 116, 139, 0.15);
  max-width: 600px;
  margin: 40px auto;
  transition: box-shadow 0.3s ease;
}
.card:hover {
  box-shadow: 0 9px 25px rgba(100, 116, 139, 0.25);
}
h2 {
  font-weight: 600;
  font-size: 2rem;
  color: #071327;
  text-align: center;
  margin-bottom: 30px;
}
input.form-control,
select.form-select {
  border: 1.8px solid #cbd5e1;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input.form-control:focus,
select.form-select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 5px rgba(59, 130, 246, 0.4);
  outline: none;
}
label.form-label,
.form-check-label {
  color: #475569;
  font-weight: 500;
  font-size: 1rem;
}
.form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid #94a3b8;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.form-check-input:checked {
  background-color: #3b82f6;
  border-color: #3b82f6;
}
.form-check-input:hover {
  border-color: #2563eb;
}
button[type="submit"] {
  background-color: #3b82f6;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 14px;
  cursor: pointer;
  width: 100%;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}
button[type="submit"]:hover {
  background-color: #2563eb;
}
.alert-success {
  background-color: #d1fae5;
  border: 1.5px solid #22c55e;
  color: #166534;
  font-weight: 600;
  margin-bottom: 30px;
  border-radius: 14px;
  padding: 15px 20px;
  text-align: center;
}
.mb-3 {
  margin-bottom: 22px !important;
}
input[type="file"] {
  color: #7a8499;
  font-size: 0.9rem;
  margin-top: 10px;
}
label[for="kimlik_resmi"] {
  margin-top: 15px;
  display: block;
}
.required-star {
  color: red;
  margin-left: 2px;
  font-weight: bold;
}
.modal-body img {
  max-width: 100%;        
  height: auto;          
  margin: 0 5px;         
  display: block; 
  margin-bottom: 8px;
  border-radius: 8px;   
}
.custom-link a {
  font-size: 0.85rem; 
  color: #0d6efd; 
  text-decoration: none;
}

.custom-link a:hover {
  text-decoration: underline;
}

.icon-circle {
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 50%;
  background-color: #ffc107; 
  color: white;
  text-align: center;
  font-weight: bold;
  margin-right: 5px;
  font-size: 0.70rem;
}
.rule {
  margin: 2px 0; }
.required-star {
    color: red;          /* yıldızın rengi */
    margin-left: 3px;    /* label ile yıldız arası boşluk */
    display: inline;     /* aynı satırda kalmasını sağlar */
}


