* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body,
    html {
      height: 100%;
      font-family: 'Segoe UI', sans-serif;
      color: white;
      overflow-x: hidden;
    }

    body {
      background: linear-gradient(-45deg, #1e3c72, #2a5298, #000000, #001f3f);
      background-size: 400% 400%;
      animation: gradientBG 15s ease infinite;
    }

    @keyframes gradientBG {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    .form-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }

    .form-container {
      max-width: 600px;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      padding: 40px;
      border-radius: 20px;
      border: 1px solid #00b4ff;
      box-shadow: 0 0 25px rgba(0, 180, 255, 0.3);
    }

    .form-container h2 {
      text-align: center;
      margin-bottom: 30px;
      color: #00b4ff;
    }

    .form-container label {
      display: block;
      margin-bottom: 8px;
      font-weight: bold;
    }

    .form-container input,
    .form-container textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 20px;
      border-radius: 8px;
      border: 1px solid #444;
      background-color: #111;
      color: white;
      transition: 0.3s;
    }

    .form-container input:focus,
    .form-container textarea:focus {
      outline: none;
      border-color: #00b4ff;
      box-shadow: 0 0 8px #00b4ff;
    }

    .form-container button {
      width: 100%;
      padding: 15px;
      background-color: #00b4ff;
      border: none;
      border-radius: 8px;
      color: white;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .form-container button:hover {
      background-color: #008ecc;
    }

    /* 🔹 KVKK alanı */
    .kvkk-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .kvkk-box label {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }

    .kvkk-box a {
      color: #00b4ff;
      text-decoration: underline;
      cursor: pointer;
    }

    #kvkk-metni {
      display: none;
      background: rgba(0, 0, 0, 0.9);
      padding: 15px;
      border-radius: 10px;
      border: 1px solid #00b4ff;
      margin-bottom: 20px;
      font-size: 13px;
      line-height: 1.5;
    }

    .links {
      margin-top: 30px;
      text-align: center;
    }

    .links a {
      display: inline-block;
      margin: 10px;
      padding: 10px 20px;
      background-color: #00b4ff;
      color: white;
      border-radius: 30px;
      text-decoration: none;
      transition: background 0.3s;
    }

    .links a:hover {
      background-color: #008ecc;
    }