body {
  background: linear-gradient(to left, #cceeff 0%, #e6f7ff 100%);
  font-family: 'Segoe UI', sans-serif;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  overflow-y: auto;
      padding-bottom: 80px;
}
    .form-card {
      background-color: rgba(255, 255, 255, 0.95);
      border-radius: 10px;
      padding: 50px 30px 30px;
      box-shadow: 0 0 40px rgba(0, 128, 255, 0.3);
      max-width: 850px;
      width: 100%;
      position: relative;
      backdrop-filter: blur(10px);
    }
      .free-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #FEE000, #eed309);
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
      .required {
  color: red;
  font-weight: bold;
  margin-left: 4px;
}
    .form-title {
      font-size: 20px;
      font-weight: bold;
      margin-top: 75px;
      margin-bottom: 15px;
      text-align: center;
      color: #477584;
    }
    .btn-custom {
background: linear-gradient(135deg, #4d8598, #6ba0b4);
      color: white;
      border-radius: 5px;
      padding: 10px 20px;
      font-weight: 600;
      border: none;
    }
a:hover {
  color: #4d8598; /* Linkin hover rengi */
  text-decoration: underline; /* Altı çizilsin istiyorsan */
  transition: 0.2s ease;
}
    .btn-custom:hover {
background: linear-gradient(135deg, #4d8598, #477584);
         color: white;
    }
    .form-label {
      font-weight: 500;
      color: #003366;
    }
    .form-control, .form-select {
      border-radius: 10px;
      padding: 10px;
      border: 1px solid #cce0ff;
      background-color: #f9fcff;
    }
    .form-icon {
      font-size: 18px;
      margin-right: 6px;
      color: #0077cc;
    }
footer.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #4d8598;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  z-index: 10;
}