/* ===== EFOTOKOPİ REGISTER PAGE (optimized, same as login) ===== */

.register-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

/* CARD */
.register-card {
  background: rgba(17, 25, 40, 0.65);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0,0,0,.6);
  padding: 2.2rem 2rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* HAFİF GRADIENT ARKA PLAN */
.register-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(99,102,241,0.15), rgba(20,184,166,0.15));
  opacity: 0.25;
  z-index: -1;
}

/* BAŞLIK VE ALT METİN */
.register-title {
  font-size: 1.6rem;
  font-weight: 600;
  background: var(--grad-text);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: .6rem;
}

.register-sub {
  color: var(--text-soft);
  font-size: .9rem;
  margin-bottom: 1.6rem;
}

/* FORM */
.register-form {
  text-align: left;
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: .85rem;
  color: var(--text-dim);
  margin-bottom: .35rem;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text-main);
  border-radius: var(--radius-md);
  padding: .7rem .9rem;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  z-index: 3;
  position: relative;
}

.form-input:focus {
  border-color: var(--accent-1);
  box-shadow: 0 0 8px rgba(99,102,241,.3);
}

/* BUTTON */
.btn-register {
  width: 100%;
  background: var(--grad-accent);
  border: none;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
  padding: .8rem 1rem;
  cursor: pointer;
  margin-top: .5rem;
  box-shadow: 0 12px 30px rgba(99,102,241,.4);
  transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
  z-index: 2;
  position: relative;
}

.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 40px rgba(99,102,241,.5);
  opacity: .95;
}

/* FOOTER */
.register-footer {
  margin-top: 1.3rem;
  text-align: center;
  font-size: .85rem;
  color: var(--text-soft);
}

.register-footer a {
  color: var(--accent-1);
  text-decoration: none;
  transition: color .2s ease;
}
.register-footer a:hover {
  color: var(--accent-green);
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .register-card {
    padding: 2rem 1.4rem;
    max-width: 330px;
  }
  .register-title {
    font-size: 1.4rem;
  }
}
