/*GENERAL MIXINS - START*/

.flexCenter {
  display: flex;
  justify-content: center;a
  align-items: center;
}
.flexBetween {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mb-2-5 {
  margin-bottom: 12px;
}
.primary-button-slider {
  background-image: url("../../../assets/images/primary-button-background.png");
}
.primary-button-general,
.primary-button-general-1 {
  background-image: url("../../../assets/images/primary-button-background.png");
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.primary-button-general:hover,
.primary-button-general-1:hover {
  background-image: url("../../../assets/images/hover-back.png");
  height: 500px;
}

.cancel-button-general-1 {
  background-image: url("../../../assets/images/cancel-btn.png");
}

.primary-button {
  background-image: url("../../../assets/images/primary-button-general.png");
}

.primary-button-general,
.cancel-button-general,
.cancel-button-general-1,
.outline-button-general,
.outline-button-general-1,
.primary-button-general:hover,
.cancel-button-general:hover,
.cancel-button-general-1:hover,
.outline-button-general:hover,
.outline-button-general-1:hover {
  width: 100%;
  background-size: 100% 56px;
  background-repeat: no-repeat;
  z-index: 9999999 !important;
  height: 56px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.primary-button-general a,
.primary-button-general-1 a {
  -webkit-transition: all 2s ease;
  transition: all 1s ease;
}
.primary-button-slider:hover a span,
.primary-button-slider:hover div,
.primary-button-slider:hover button,
.primary-button-slider:hover a,
.primary-button-general:hover a,
.primary-button-general-1:hover a,
.outline-button-general:hover a,
.outline-button-general-1:hover a {
  color: #0c1a29 !important;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

.primary-button-slider {
  width: 100%;
  background-size: 100% 56px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 9999999 !important;
  height: 56px;
}

.outline-button-general-1 {
  width: 100%;
  background-size: 100% 56px;
  height: 56px;
}
.authentication-form {
  position: relative;
}
.authentication-form .form-group,
.authentication-form .form-link-content {
  width: 96%;
  margin-left: 2%;
}

/*GENERAL MIXINS - END*/

/*GENERAL MIXINS - START*/

.flexCenter {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flexBetween {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mb-2-5 {
  margin-bottom: 12px;
}

/* BUTTON START*/
/* Temel Buton Stili */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: capitalize !important;
  text-decoration: none;
}

/* Hover ve Focus Durumu */
.button:hover,
.button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

/* Disabled Durumu */
.button:disabled {
  background-color: #e0e0e0;
  color: #b0b0b0;
  cursor: not-allowed;
  border-color: #e0e0e0;
}

.button-primary {
  background-color: #0052cc;
  color: #ffffff;
  border-color: #0052cc;
}

.button-primary:hover {
  background-color: #003d99;
  color: #ffffff !important;
}

.button-secondary {
  background-color: #edf2ff;
  color: #0052cc;
  border-color: #0052cc;
}

.button-secondary:hover {
  background-color: #d1e0ff;
}
.button-danger {
  background-color: #ff5630;
  color: #ffffff;
  border-color: #ff5630;
}
.button-danger:hover {
  background-color: #de350b;
}
.button-outline {
  background-color: transparent;
  border-color: #0052cc;
  color: #0052cc;
  letter-spacing: 0.02em;
}

.button-outline:hover a, .button-outline:hover  {
  color: #ffffff !important;
  letter-spacing: 0.02em;
}
.button-outline:hover {
  background-color: #0052cc;
}
.button-danger-outline {
  background-color: transparent;
  border-color: #ff5630;
  color: #ff5630;
}

.button-danger-outline:hover {
  background-color: #ff5630;
  color: #ffffff;
}
.button-large {

  font-size: 16px;
}
.button-small {
  padding: 8px 16px;
  font-size: 12px;
}
.button-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px; 
}

.button-icon i {
  font-size: 16px; 
}
