/* ==============================================
   ATÜ HESABIM - Custom Styles
   ============================================== */

/* Genel Ayarlar */
:root {
  /*  --primary-color: #ca2d21;
  primary-hover: #a82419;*/
  --primary-color: #ca2d21;
  --primary-hover: #a82419;
  --warning-color: #ffc107;
  --success-color: #28a745;
  --danger-color: #dc3545;
}

/* Şifre Göster/Gizle */
.password-wrapper {
  position: relative;
}

  .password-wrapper .toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }

    .password-wrapper .toggle-password:hover {
      color: var(--primary-color);
    }

.main-container {
  max-width: 1000px;
  margin: 0 auto;
  padding:10px;
}

.action-buttons {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 30px;
  margin-bottom: 30px;
  border-left: 5px solid var(--primary-color);
}

.btn-custom {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(202, 45, 33, 0.3);
}

  .btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(202, 45, 33, 0.4);
    color: white;
  }

.info-section {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 40px;
  border-left: 5px solid var(--primary-color);
}

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

  .section-title i {
    font-size: 1.5rem;
  }

.info-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.highlight-box {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.link-custom {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

  .link-custom:hover {
    color: var(--primary-hover);
    text-decoration: underline;
  }

.divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
  margin: 40px 0;
}

.badge-custom {
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}
/*password change css*/
.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  padding: 40px;
  padding-top: 50px;
  border-top: 5px solid var(--primary-color);
}

.page-title {
  color: #333;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 15px;
}

  .page-title i {
    color: var(--primary-color);
    font-size: 2rem;
  }

.alert-custom {
  border-radius: 12px;
  border: none;
  padding: 15px 20px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

  .alert-custom i {
    font-size: 1.3rem;
  }

.alert-warning-custom {
  background: linear-gradient(135deg, #fff9e6 0%, #fff4cc 100%);
  border-left: 4px solid var(--warning-color);
  color: #856404;
}

.alert-danger-custom {
  background: linear-gradient(135deg, #ffe6e6 0%, #ffcccc 100%);
  border-left: 4px solid #dc3545;
  color: #721c24;
}

.form-label-custom {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

  .form-label-custom i {
    color: var(--primary-color);
  }

.form-control-custom {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

  .form-control-custom:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(202, 45, 33, 0.15);
    outline: none;
  }

  .form-control-custom.is-invalid {
    border-color: #dc3545;
  }

.invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
}

.form-control-custom.is-invalid ~ .invalid-feedback {
  display: block;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(202, 45, 33, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

  .btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(202, 45, 33, 0.4);
    color: white;
  }

.captcha-container {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  display: inline-block;
  border: 2px solid #e0e0e0;
}

.captcha-image {
  border-radius: 8px;
  border: 2px solid #ddd;
  margin-bottom: 10px;
  max-width: 100%;
  height: auto;
}

.refresh-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

  .refresh-link:hover {
    color: var(--primary-hover);
    transform: translateX(5px);
  }



.page-title {
  font-size: 1.5rem;
}

.btn-primary-custom {
  width: 100%;
  justify-content: center;
}

.captcha-container {
  width: 100%;
}