﻿/*
TASARIM : DoLmA
TARİH : 24.08.2020
*/
@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Khand:400,500,600,700,300&subset=latin,latin-ext');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* CSS Reset for cross-browser consistency */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, ul, li, form, input, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
body { line-height: 1; }
ul { list-style: none; }

/* GENEL AYALAR */
html {
  width: 1024px;
  height: 768px;
  overflow: hidden;
}
body {
  min-width: 1024px;
  min-height: 768px;
  overflow: hidden;
  font-family: "Khand", Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #f3e5ff 0%, #e1bee7 100%);
  font-weight: 100;
  margin: 0;
  padding: 0;
  color: #4a148c;
}

/* IE için gradient alternatifi */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body {
    background: #f3e5ff; /* Düz renk fallback */
  }
}

.Temizle { clear: both; }
.Kapsayici { width: 1024px; position: relative; margin: auto; }
.Logo {
  position: absolute;
  width: 455px;
  height: auto;
  z-index: 2;
  left: 30px;
  top: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Poppins', sans-serif;
  color: #6c5ce7;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 15px 25px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* IE için flex ve gap alternatifi */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .Logo {
    display: -ms-flexbox;
    -ms-flex-align: center;
    gap: 0;
    background-color: rgba(255, 255, 255, 0.8); /* backdrop-filter kaldırıldı */
  }
  .Logo > * { margin-right: 20px; }
  .Logo > *:last-child { margin-right: 0; }
}

.Logo-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  box-shadow: 0 7px 20px rgba(108, 92, 231, 0.5);
}

.Logo-text {
  display: flex;
  flex-direction: column;
}

.Logo-name {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.Logo-slogan {
  font-size: 15px;
  font-weight: 300;
  color: #636e72;
  letter-spacing: 1.2px;
}

.Logo:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.9);
}

.Logo:hover .Logo-icon {
  background: linear-gradient(135deg, #a29bfe, #6c5ce7);
  transform: rotate(5deg);
}

/* IE için transform desteği */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .Logo:hover {
    -ms-transform: translateY(-5px);
  }
  .Logo:hover .Logo-icon {
    background: #a29bfe; /* Gradient yerine düz renk */
    -ms-transform: rotate(5deg);
  }
}

/* GENEL TEMA */
:root {
  --primary-color: #6c5ce7;
  --secondary-color: #a29bfe;
  --accent-color: #fd79a8;
  --dark-color: #2d3436;
  --light-color: #f5f6fa;
  --success-color: #00b894;
  --warning-color: #fdcb6e;
  --error-color: #d63031;
  --online-color: #00cec9;
}

/* ICON MENU */
.icon_menu {
  position: absolute;
  margin: 551px 0 0 79px;
  display: flex;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* IE için flex ve gap alternatifi */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .icon_menu {
    display: -ms-flexbox;
    gap: 0;
    background: rgba(255, 255, 255, 0.15); /* backdrop-filter kaldırıldı */
  }
  .icon_menu a { margin-right: 15px; }
  .icon_menu a:last-child { margin-right: 0; }
}

.icon_menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-decoration: none;
  font-family: 'Khand', sans-serif;
  font-weight: 500;
  font-size: 0.9em;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
}

.icon_menu a span {
  font-size: 0.75em;
  font-weight: 400;
  margin-top: 5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.icon_menu a:nth-child(1) {
  background: linear-gradient(135deg, #ff6b6b, #e91e63);
}
.icon_menu a:nth-child(1)::before {
  content: '\f015';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 1.8em;
  margin-bottom: 5px;
}

.icon_menu a:nth-child(2) {
  background: linear-gradient(135deg, #4fc3f7, #0288d1);
}
.icon_menu a:nth-child(2)::before {
  content: '\f0c9';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 1.8em;
  margin-bottom: 5px;
}

.icon_menu a:nth-child(3) {
  background: linear-gradient(135deg, #66bb6a, #2e7d32);
}
.icon_menu a:nth-child(3)::before {
  content: '\f07a';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 1.8em;
  margin-bottom: 5px;
}

.icon_menu a:nth-child(4) {
  background: linear-gradient(135deg, #ffb300, #f57c00);
}
.icon_menu a:nth-child(4)::before {
  content: '\f007';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 1.8em;
  margin-bottom: 5px;
}

.icon_menu a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.icon_menu a:nth-child(1):hover {
  background: linear-gradient(135deg, #e91e63, #d81b60);
}
.icon_menu a:nth-child(2):hover {
  background: linear-gradient(135deg, #0288d1, #0277bd);
}
.icon_menu a:nth-child(3):hover {
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
}
.icon_menu a:nth-child(4):hover {
  background: linear-gradient(135deg, #f57c00, #ef6c00);
}

/* IE için transform ve gradient alternatifi */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .icon_menu a:hover {
    -ms-transform: scale(1.1);
  }
  .icon_menu a:nth-child(1) { background: #ff6b6b; }
  .icon_menu a:nth-child(1):hover { background: #e91e63; }
  .icon_menu a:nth-child(2) { background: #4fc3f7; }
  .icon_menu a:nth-child(2):hover { background: #0288d1; }
  .icon_menu a:nth-child(3) { background: #66bb6a; }
  .icon_menu a:nth-child(3):hover { background: #2e7d32; }
  .icon_menu a:nth-child(4) { background: #ffb300; }
  .icon_menu a:nth-child(4):hover { background: #f57c00; }
}

.icon_menu a::after {
  content: none;
}

/* MİNİ MENÜ TASARIMI */
.mini_menu {
  position: absolute;
  margin: 713px 0 0 350px;
  width: 650px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .mini_menu {
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    gap: 0;
  }
  .mini_menu a { margin-right: 15px; margin-bottom: 15px; }
  .mini_menu a:last-child { margin-right: 0; }
}

.mini_menu a {
  font-size: 0.90em;
  font-family: "Khand", sans-serif;
  font-weight: 600;
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  background: var(--light-color);
  transition: all 0.3s ease;
}

/* IE için CSS değişkenleri alternatifi */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .mini_menu a {
    color: #6c5ce7; /* --primary-color */
    background: #f5f6fa; /* --light-color */
  }
  .mini_menu a:hover {
    background: #6c5ce7; /* --primary-color */
  }
}

.mini_menu a:hover {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

  /* ÜYELER ALANI - CİNSİYETE GÖRE RENKLİ TASARIM */
  .uye_resimleri {
    width: 455px;
    height: 400px;
    top: 30px;
    left: 530px;
    position: absolute;
    z-index: 1;
    perspective: 1000px;
  }

  .uye_resimleri ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 15px;
    padding: 15px;
    list-style: none;
    margin: 0;
  }

  /* IE için 4'lü yan yana düzen */
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .uye_resimleri {
      perspective: none; /* IE'de desteklenmez */
    }
    .uye_resimleri ul {
      display: block;
      overflow: hidden; /* Float taşmalarını önler */
    }
    .uye_resimleri li {
      float: left;
      width: 90px;
      margin: 0 15px 15px 0; /* 15px sağ ve alt boşluk */
    }
    /* 4. öğeden sonra sağ boşluk kaldırma */
    .uye_resimleri li:nth-child(4n) {
      margin-right: 0;
    }
    /* Her satırda 4 öğe sonrası temizleme */
    .uye_resimleri li:nth-child(4n+1) {
      clear: left;
    }
  }

  .uye_resimleri li[data-cinsiyet="Bayan"] {
    background: linear-gradient(135deg, #fff0f5, #ffd6e7);
    border: 1px solid #ffb6c1;
  }

  .uye_resimleri li[data-cinsiyet="Erkek"] {
    background: linear-gradient(135deg, #f0f8ff, #d4e6ff);
    border: 1px solid #add8e6;
  }

  .uye_resimleri li {
    position: relative;
    width: 90px;
    height: 110px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    cursor: pointer;
    overflow: hidden;
  }

  /* IE için transform sadeleştirme */
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .uye_resimleri li {
      transition: all 0.4s ease;
      transform-style: flat;
    }
  }

  .uye_resimleri li.online::before {
    background: linear-gradient(90deg, #00b894, #00cec9);
  }

  .uye_resimleri li.offline::before {
    background: linear-gradient(90deg, #dfe6e9, #b2bec3);
  }

  .uye_resimleri .avatar-container {
    width: 60px;
    height: 60px;
    margin: 10px auto 5px;
    border-radius: 10px; /* Kare */
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative; /* badge için */
  }

  .uye_resimleri img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px; /* Kare */
  }

  .uye_resimleri li:hover .avatar-container {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
  }

  .uye_resimleri li[data-cinsiyet="Bayan"]:hover {
    background: linear-gradient(135deg, #ffd6e7, #ffb6c1);
    box-shadow: 0 20px 30px rgba(255, 182, 193, 0.3);
  }

  .uye_resimleri li[data-cinsiyet="Erkek"]:hover {
    background: linear-gradient(135deg, #d4e6ff, #add8e6);
    box-shadow: 0 20px 30px rgba(173, 216, 230, 0.3);
  }

  .uye_resimleri li span {
    display: block;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0 5px;
    transition: all 0.3s ease;
  }

  .uye_resimleri li span.isim {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .uye_resimleri li span.yas {
    font-size: 10px;
    color: #636e72;
    font-weight: 500;
  }

  .uye_resimleri li span.sehir {
    font-size: 9px;
    color: #b2bec3;
    font-weight: 400;
  }

  .uye_resimleri li:hover {
    transform: translateY(-10px) rotateX(10deg);
    box-shadow: 0 20px 30px rgba(108, 92, 231, 0.3);
  }

  .uye_resimleri li:nth-child(odd):hover {
    transform: translateY(-10px) rotateX(10deg) rotateZ(-2deg);
  }

  .uye_resimleri li:nth-child(even):hover {
    transform: translateY(-10px) rotateX(10deg) rotateZ(2deg);
  }

  /* IE için hover transform sadeleştirme */
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .uye_resimleri li:hover,
    .uye_resimleri li:nth-child(odd):hover,
    .uye_resimleri li:nth-child(even):hover {
      -ms-transform: translateY(-10px);
      transform: translateY(-10px);
    }
    .uye_resimleri li:hover .avatar-container {
      -ms-transform: scale(1.1);
      transform: scale(1.1);
    }
  }

  /* Badge container - resim içinde alt ortada */
  .uye_resimleri .badge-container {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    z-index: 10;
    max-width: 90%;
    box-sizing: border-box;
    pointer-events: none;
    user-select: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  /* Genel badge stilleri */
  .uye_resimleri .badge {
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    min-width: 70px;
  }

  /* Renkler */
  .uye_resimleri .badge-sitekurucusu {
    background-color: #2c3e50; /* koyu mavi */
  }

  .uye_resimleri .badge-sitesahibi {
    background-color: #27ae60; /* koyu yeşil */
  }

  .uye_resimleri .badge-haftaninuyesi {
    background-color: #d35400; /* koyu turuncu */
  }




.online-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #00b894;
  border-radius: 50%;
  border: 2px solid white;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.online_uyeler_baslik {
  font-size: 2em;
  font-family: 'Poppins', sans-serif;
  color: #6c5ce7;
  font-weight: 700;
  text-align: center;
  position: absolute;
  left: 530px;
  top: 30px;
  z-index: 165;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.online_uyeler_baslik span {
  display: block;
  font-size: 0.6em;
  font-weight: 300;
  color: #636e72;
  margin-top: 5px;
}

/* SOHBET LOGİN - İKONLU TASARIM */
.sohbet_login {
  width: 445px;
  height: 280px;
  position: absolute;
  z-index: 2;
  margin-top: 149px;
  left: 32px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

/* LOGİN BUTONLARI - MODERN TASARIM */
.login_buttons {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: -23px 0 20px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .login_buttons {
    display: -ms-flexbox;
    -ms-flex-pack: center;
    gap: 0;
  }
  .login_buttons a { margin-right: 15px; }
  .login_buttons a:last-child { margin-right: 0; }
}

.login_buttons a {
  color: #fff;
  font-size: 1em;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 63px;
  border-radius: 25px;
  text-shadow: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.login_buttons a::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 8px;
  font-size: 1em;
}

.login_buttons a:nth-child(1) {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}
.login_buttons a:nth-child(1)::before {
  content: '\f2f6';
}

.login_buttons a:nth-child(2) {
  background: linear-gradient(135deg, #00b894, #00cec9);
}
.login_buttons a:nth-child(2)::before {
  content: '\f234';
}

.login_buttons a:nth-child(3) {
  background: linear-gradient(135deg, #fd79a8, #e84393);
}
.login_buttons a:nth-child(3)::before {
  content: '\f059';
}

.login_buttons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.login_buttons a.aktif {
  transform: scale(1.05);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

/* IE için transform ve gradient alternatifi */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .login_buttons a:nth-child(1) { background: #6c5ce7; }
  .login_buttons a:nth-child(2) { background: #00b894; }
  .login_buttons a:nth-child(3) { background: #fd79a8; }
  .login_buttons a:hover {
    -ms-transform: translateY(-3px);
  }
  .login_buttons a.aktif {
    -ms-transform: scale(1.05);
  }
}

/* LOGİN FORM */
.login_form input[type=text],
.login_form input[type=password] {
  width: 66%;
  height: 50px;
  padding: 0 15px 0 50px;
  border: 2px solid #f1f1f1;
  font-size: 0.90em;
  color: var(--dark-color);
  border-radius: 50px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

/* IE için CSS değişkeni alternatifi */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .login_form input[type=text],
  .login_form input[type=password] {
    color: #2d3436; /* --dark-color */
  }
  .login_form input[type=text]:focus,
  .login_form input[type=password]:focus {
    border-color: #6c5ce7; /* --primary-color */
  }
  .login_form .Kadi::before,
  .login_form .Sifre::before {
    color: #6c5ce7; /* --primary-color */
  }
  .login_form .Giris_Btn {
    background: #6c5ce7; /* --primary-color */
  }
  .login_form .Giris_Btn:hover {
    background: #fd79a8; /* --accent-color */
  }
}

.login_form input[type=text]:focus,
.login_form input[type=password]:focus {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
}

.login_form .Kadi { position: relative; }
.login_form .Kadi::before {
  content: '\f007';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 15px;
  color: var(--primary-color);
}

.login_form .Sifre { position: relative; }
.login_form .Sifre::before {
  content: '\f023';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 15px;
  color: var(--primary-color);
}

.login_form .Giris_Btn {
  width: 100%;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.login_form .Giris_Btn:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(253, 121, 168, 0.3);
}

/* YAN BUTONLAR */
.yan_butonlar {
  width: 70px;
  height: 105px;
  position: absolute;
  margin: -270px 0 0 384px;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .yan_butonlar {
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    gap: 0;
  }
  .yan_butonlar > * { margin-bottom: 2px; }
  .yan_butonlar > *:last-child { margin-bottom: 0; }
}

.Bay, .Bayan, .Avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.Bay {
  width: 70px;
  height: 50px;
  background: var(--primary-color);
}

.Bayan {
  width: 70px;
  height: 50px;
  background: var(--accent-color);
}

.Avatar {
  width: 142px;
  height: 50px;
  background: var(--secondary-color);
}

.Bay::before {
  content: '\f222';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 5px;
}

.Bayan::before {
  content: '\f221';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 5px;
}

.Avatar::before {
  content: '\f2bd';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 5px;
}

.Bay:hover, .Bayan:hover, .Avatar:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* IE için CSS değişkenleri ve transform alternatifi */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .Bay { background: #6c5ce7; }
  .Bayan { background: #fd79a8; }
  .Avatar { background: #a29bfe; }
  .Bay:hover, .Bayan:hover, .Avatar:hover {
    -ms-transform: translateY(-3px);
  }
}

/* YENİ ÜYELİK ve ŞİFRE HATIRLATMA */
.home_login_yeni_uyelik,
.home_login_sifremi_unuttum {
  position: absolute;
  line-height: 110%;
  font-weight: 600;
  font-size: 0.90em;
  padding-left: 60px;
  transition: all 0.3s ease;
}

.home_login_yeni_uyelik {
  color: var(--success-color);
  margin: 565px 0 0 390px;
}

.home_login_sifremi_unuttum {
  color: var(--warning-color);
  margin: 620px 0 0 390px;
}

.home_login_yeni_uyelik::before {
  content: '\f234';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 40px;
}

.home_login_sifremi_unuttum::before {
  content: '\f084';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 40px;
}

.home_login_yeni_uyelik:hover,
.home_login_sifremi_unuttum:hover {
  transform: translateX(5px);
  text-decoration: none;
}

/* IE için CSS değişkenleri ve transform alternatifi */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .home_login_yeni_uyelik { color: #00b894; }
  .home_login_sifremi_unuttum { color: #fdcb6e; }
  .home_login_yeni_uyelik:hover,
  .home_login_sifremi_unuttum:hover {
    -ms-transform: translateX(5px);
  }
}

/* BİLDİRİMLER */
.message {
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 1em !important;
  font-weight: normal !important;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .message {
    display: -ms-flexbox;
    -ms-flex-align: center;
  }
}

.message::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 10px;
  font-size: 1.2em;
}

.message.info {
  border: 1px solid #cadcea;
  background: #e1f2fc;
  color: #225b86 !important;
}

.message.info::before {
  content: '\f05a';
}

.message.error {
  border: 1px solid #eeb7ba;
  background: #fae2e2;
  color: #be4741 !important;
}

.message.error::before {
  content: '\f06a';
}

.message.success {
  border: 1px solid #b8c97b;
  background: #e5edc4;
  color: #3f7227 !important;
}

.message.success::before {
  content: '\f058';
}

.message.warning {
  border: 1px solid #e5dbaa;
  background: #ffffc0;
  color: #6d7829 !important;
}

.message.warning::before {
  content: '\f071';
}