/* Powertech — kayıt formu */
:root {
  --pt-register-input-bg: rgba(255, 255, 255, 0.14);
  --pt-register-input-border: rgba(255, 255, 255, 0.35);
}

body#registration #main {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

body#registration .pt-register-panel {
  background: linear-gradient(165deg, var(--pt-brand-blue) 0%, var(--pt-brand-blue-dark) 100%);
  border: none;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(var(--pt-brand-blue-rgb), 0.35);
  color: #fff;
  margin-bottom: 2.5rem;
  overflow: hidden;
  padding: 0;
}

body#registration .pt-register-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0;
  padding: 1.75rem 2rem 1.25rem;
  text-align: center;
}

body#registration .pt-register-header h2 {
  color: #fff;
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
}

body#registration .pt-register-form {
  padding: 1.25rem 2rem 2rem;
}

body#registration .pt-register-login-hint {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  padding: 0.85rem 1rem;
  text-align: center;
}

body#registration .pt-register-login-hint a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body#registration .pt-register-login-hint a:hover {
  color: #fff;
  opacity: 0.9;
}

body#registration #customer-form .form-group {
  margin-bottom: 1.15rem;
}

body#registration #customer-form .form-control-label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  padding-top: 0.55rem;
}

body#registration #customer-form .form-control-label.required::after {
  color: #ffe8a3;
}

body#registration #customer-form .form-control-comment {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

body#registration #customer-form .form-control,
body#registration #customer-form .form-control-select,
body#registration #customer-form select.form-control {
  background-color: var(--pt-register-input-bg);
  border: 1px solid var(--pt-register-input-border);
  border-radius: 8px;
  box-shadow: none;
  color: #fff;
  min-height: 44px;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

body#registration #customer-form .form-control:focus,
body#registration #customer-form .form-control-select:focus,
body#registration #customer-form select.form-control:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
  color: #fff;
  outline: none;
}

body#registration #customer-form .form-control::placeholder {
  color: #fff;
  opacity: 0.92;
}

body#registration #customer-form .form-control::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.92;
}

body#registration #customer-form .form-control::-moz-placeholder {
  color: #fff;
  opacity: 0.92;
}

body#registration #customer-form .form-control:-ms-input-placeholder {
  color: #fff;
  opacity: 0.92;
}

body#registration #customer-form select.form-control option {
  background: #fff;
  color: #333;
}

body#registration #customer-form .pt-password-field {
  position: relative;
  width: 100%;
}

body#registration #customer-form .pt-password-field .form-control {
  border-radius: 8px;
  padding-right: 3rem;
  width: 100%;
}

body#registration #customer-form .pt-password-toggle {
  align-items: center;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
}

body#registration #customer-form .pt-password-toggle:hover,
body#registration #customer-form .pt-password-toggle:focus {
  color: rgba(255, 255, 255, 0.85);
  outline: none;
}

body#registration #customer-form .pt-password-toggle .material-icons {
  font-size: 22px;
}

body#registration #customer-form .pt-password-toggle-hide {
  display: none;
}

body#registration #customer-form .pt-password-field.is-visible .pt-password-toggle-show {
  display: none;
}

body#registration #customer-form .pt-password-field.is-visible .pt-password-toggle-hide {
  display: inline-flex;
}

body#registration #customer-form .radio-inline {
  color: #fff;
  font-weight: 500;
}

body#registration #customer-form .custom-checkbox label,
body#registration #customer-form .custom-checkbox label p {
  color: rgba(255, 255, 255, 0.95);
}

body#registration #customer-form .custom-checkbox label a {
  color: #fff;
  text-decoration: underline;
}

body#registration #customer-form .custom-radio input[type="radio"] + span {
  border-color: rgba(255, 255, 255, 0.55);
}

body#registration #customer-form .custom-radio input[type="radio"]:checked + span {
  background-color: #fff;
}

body#registration #customer-form .custom-checkbox input[type="checkbox"] + span {
  border-color: rgba(255, 255, 255, 0.55);
}

body#registration #customer-form .custom-checkbox input[type="checkbox"]:checked + span {
  background-color: #fff;
}

body#registration #customer-form .custom-checkbox .checkbox-checked {
  color: var(--pt-brand-blue-dark);
}

body#registration #customer-form .help-block,
body#registration #customer-form .alert-danger {
  border-radius: 6px;
}

body#registration #customer-form .form-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 0.5rem;
  padding-top: 1.25rem;
}

body#registration #customer-form .form-control-submit {
  background: #fff;
  border: none;
  border-radius: 8px;
  color: var(--pt-brand-blue-dark);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  min-height: 48px;
  padding: 0.65rem 2rem;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}

body#registration #customer-form .form-control-submit:hover,
body#registration #customer-form .form-control-submit:focus {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: var(--pt-brand-blue-dark);
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  body#registration #customer-form .form-control-label {
    margin-bottom: 0.35rem;
    padding-top: 0;
  }

  body#registration .pt-register-header,
  body#registration .pt-register-form {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  body#registration #customer-form .form-group.row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
