/* ===== KAYIT OL SAYFASI ===== */
.register-section {
  width: 100%;
  background: url("/img/kayitOl_bg.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  min-height: 100vh;
}

.register-container {
  display: flex;
  gap: 100px;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  margin-left: 25px;
}

/* Sol Taraf - Form */
.register-left {
  flex: 1;
  max-width: 700px;
}

.register-title {
  font-family: glacial, sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #000;
  margin-bottom: 35px;
  text-align: left;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Form Row - İki input yan yana */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Input alanları */
.register-input {
  width: 100%;
  padding: 16px 25px;
  border: none;
  outline: none;
  border-radius: 35px;
  font-size: 16px;
  font-family: glacial, sans-serif;
  background: linear-gradient(to bottom, #dfdcda, #858176);
  color: #000;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.register-input::placeholder {
  font-family: glacial, sans-serif;
  color: #f2f2f2;
  font-weight: 400;
}

.register-input:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Checkbox Container */
.terms-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: glacial, sans-serif;
  font-size: 14px;
  color: #4b4b4b !important;
  cursor: pointer;
  font-style: italic;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.checkbox-label span {
  line-height: 1.5;
}

/* Sağ Taraf - Mesaj ve Buton */
.register-right {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.right-title {
  font-family: glacial, sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #731919;
  line-height: 1.3;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  margin: 0;
}

/* Buton */
.register-button {
  padding: 16px 60px;
  font-family: glacial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: white;
  border: none;
  border-radius: 50px;
  background: linear-gradient(to right, #ff3131, #ff914d);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 49, 49, 0.3);
}

.register-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 49, 49, 0.5);
}

.register-button:active {
  transform: translateY(-1px);
}

/* Giriş Yap Linki */
.login-link {
  font-family: "Arimo", sans-serif;
  font-size: 13px;
  font-style: italic;
  color: #c7c7c7;
  margin-top: 10px;
}

.login-link a {
  color: #c7c7c7;
  text-decoration: underline;
  transition: color 0.3s ease;
  font-weight: 600;
}

.login-link a:hover {
  color: #ff3131;
}

/* Responsive */
@media (max-width: 1024px) {
  .register-container {
    flex-direction: column;
    gap: 50px;
  }

  .register-left {
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .register-title {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .register-section {
    padding: 60px 20px;
  }

  .register-input {
    font-size: 15px;
    padding: 14px 20px;
  }

  .register-title {
    font-size: 28px;
  }

  .register-button {
    font-size: 18px;
    padding: 14px 50px;
  }

  .checkbox-label {
    font-size: 13px;
  }

  .right-title {
    font-size: 26px;
  }
}

/* Kayıt sayfası - KVKK / Gizlilik / Kullanım linkleri */
.terms-container .terms-link,
.terms-container .terms-link:visited {
  color: #333 !important;           /* hafif gri */
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-style: normal;       /* italik olmasın */
}

.terms-container .terms-link:hover {
  color: #ffffff;
  text-decoration-thickness: 2px;
}