/* Container */
.reset-container {
  width: 100%;
  min-height: 100vh;
  padding: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

/* Reset Card */
.reset-card {
  width: 480px;
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  margin: auto;
}

/* Icon */
.reset-icon {
  width: 80px;
  height: 80px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.reset-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary-purple);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reset-header {
  text-align: center;
  margin-bottom: 32px;
}

.reset-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.reset-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Form */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-purple);
}

.form-input.error {
  border-color: var(--red);
}

.form-input::placeholder {
  color: var(--text-light);
}

/* Password Strength */
.password-strength {
  margin-top: 8px;
}

.strength-bar {
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4px;
}

.strength-fill {
  height: 100%;
  width: 0%;
  transition: all 0.3s ease;
}

.strength-fill.weak {
  width: 33%;
  background: var(--red);
}

.strength-fill.medium {
  width: 66%;
  background: var(--orange);
}

.strength-fill.strong {
  width: 100%;
  background: var(--green);
}

.strength-text {
  font-size: 12px;
  font-weight: 600;
}

.strength-text.weak {
  color: var(--red);
}

.strength-text.medium {
  color: var(--orange);
}

.strength-text.strong {
  color: var(--green);
}

/* Error Message */
.error-message {
  display: none;
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(239, 68, 68, 0.1);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
}

.error-message.active {
  display: block;
}

/* Password Requirements */
.password-requirements {
  margin-top: 16px;
  padding: 16px;
  background: var(--bg-gray);
  border-radius: 8px;
}

.requirements-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.requirement-item.met {
  color: var(--green);
}

.requirement-icon {
  width: 16px;
  height: 16px;
  display: flex;
}

.requirement-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
}

.requirement-item.met .requirement-icon svg {
  stroke: var(--green);
}

/* Button */
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary-purple);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 24px;
}

.btn-submit:hover {
  background: var(--dark-purple);
  transform: translateY(-2px);
}

.btn-submit:disabled {
  background: var(--text-light);
  cursor: not-allowed;
  transform: none;
}

/* Success Message */
.success-message {
  display: none;
  text-align: center;
}

.success-message.active {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.success-text {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn-login {
  width: 100%;
  padding: 16px;
  background: var(--primary-purple);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: block;
}

.btn-login:hover {
  background: var(--dark-purple);
  transform: translateY(-2px);
}

/* Back Link */
.back-link {
  text-align: center;
  margin-top: 24px;
}

.back-link a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
}

.back-link a:hover {
  color: var(--primary-purple);
}

/* Responsive */
@media (max-width: 767px) {
  .reset-container {
    padding: 14px;
  }
  .reset-card {
    width: 100%;
    padding: 32px 24px;
  }

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

  .success-title {
    font-size: 24px;
  }
}

/* REGİSTER PAGE */

/* Container */
.reg-container {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Register Card */
.reg-card {
  background: var(--white);
  width: 600px;
  padding: 48px;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.reg-header {
  text-align: center;
  margin-bottom: 32px;
}

.reg-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.reg-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
}

/* Form */
.reg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.reg-form-group {
  margin-bottom: 20px;
}

.reg-form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.reg-form-label-optional {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: none;
}

.reg-form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.reg-form-input:focus {
  outline: none;
  border-color: var(--primary-purple);
}

.reg-form-input::placeholder {
  color: var(--text-light);
}

/* Password Strength */
.reg-password-strength {
  margin-top: 8px;
}

.reg-strength-bar {
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4px;
}

.reg-strength-fill {
  height: 100%;
  width: 0%;
  transition: all 0.3s ease;
}

.reg-strength-fill.weak {
  width: 33%;
  background: var(--red);
}

.reg-strength-fill.medium {
  width: 66%;
  background: var(--orange);
}

.reg-strength-fill.strong {
  width: 100%;
  background: var(--green);
}

.reg-strength-text {
  font-size: 12px;
  font-weight: 600;
}

.reg-strength-text.weak {
  color: var(--red);
}

.reg-strength-text.medium {
  color: var(--orange);
}

.reg-strength-text.strong {
  color: var(--green);
}

/* Terms Checkbox */
.reg-terms-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.reg-checkbox-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}

.reg-terms-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.reg-terms-label a {
  color: var(--primary-purple);
  font-weight: 600;
  text-decoration: none;
}

.reg-terms-label a:hover {
  text-decoration: underline;
}

/* Button */
.reg-btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(95.53deg, #ff6b35, #ff5722);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reg-btn-submit:hover {
  background-color: #ff5722;
  transform: translateY(-2px);
}

.reg-btn-submit:disabled {
  background: var(--text-light);
  cursor: not-allowed;
  transform: none;
}

/* Divider */
.reg-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
}

.reg-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.reg-divider-text {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
}

/* Social Login */
.reg-social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.reg-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.reg-social-btn:hover {
  background: var(--bg-gray);
  border-color: var(--text-secondary);
}

.reg-social-icon {
  width: 20px;
  height: 20px;
}

.reg-social-icon svg {
  width: 100%;
  height: 100%;
}

/* Login Link */
.reg-login-link {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.reg-login-text {
  font-size: 15px;
  color: var(--text-secondary);
}

.reg-login-text a {
  color: var(--primary-purple);
  font-weight: 700;
  text-decoration: none;
}

.reg-login-text a:hover {
  text-decoration: underline;
}

/* Back Link */
.reg-back-link {
  text-align: center;
  margin-top: 24px;
}

.reg-back-link a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
}

.reg-back-link a:hover {
  color: var(--primary-purple);
}

/* Responsive */
@media (max-width: 767px) {
  .reg-container {
    padding: 14px;
  }
  .reg-card {
    padding: 32px 24px;
    width: 100%;
  }

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

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

/* LOGİN PAGE */

/* Container */
.log-container {
  width: 100%;
  min-height: 100vh;
  padding: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

/* Login Card */
.log-card {
  background: var(--white);
  padding: 48px;
  width: 480px;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  margin: auto;
}

.log-header {
  text-align: center;
  margin-bottom: 32px;
}

.log-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.log-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
}

/* Form */
.log-form-group {
  margin-bottom: 24px;
}

.log-form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.log-form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.log-form-input:focus {
  outline: none;
  border-color: var(--primary-purple);
}

.log-form-input::placeholder {
  color: var(--text-light);
}

/* Checkbox */
.log-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.log-checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.log-checkbox-input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.log-checkbox-label {
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
}

.log-forgot-link {
  font-size: 14px;
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
}

.log-forgot-link:hover {
  text-decoration: underline;
}

/* Button */
.log-btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(95.53deg, #ff6b35, #ff5722);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.log-btn-submit:hover {
  background-color: #ff5722;
  transform: translateY(-2px);
}

/* Divider */
.log-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
}

.log-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.log-divider-text {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
}

/* Social Login */
.log-social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.log-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.log-social-btn:hover {
  background: var(--bg-gray);
  border-color: var(--text-secondary);
}

.log-social-icon {
  width: 20px;
  height: 20px;
}

.log-social-icon svg {
  width: 100%;
  height: 100%;
}

/* Sign Up Link */
.log-signup-link {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.log-signup-text {
  font-size: 15px;
  color: var(--text-secondary);
}

.log-signup-text a {
  color: var(--primary-purple);
  font-weight: 700;
  text-decoration: none;
}

.log-signup-text a:hover {
  text-decoration: underline;
}

/* Back Link */
.log-back-link {
  text-align: center;
  margin-top: 24px;
}

.log-back-link a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
}

.log-back-link a:hover {
  color: var(--primary-purple);
}

/* Responsive */
@media (max-width: 767px) {
  .log-container {
    justify-content: start;
    padding: 14px;
  }
  .log-card {
    width: 100%;
    padding: 32px 24px;
  }

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

  .log-form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
