/* Genel sıfırlama */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Gövde ayarları */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fafbfc; /* Yumuşak gri arka plan */
  min-height: 100vh;
  position: relative;
}

/* Soldaki illüstrasyon (alt köşede sabitlenecek) */
.illustration-left {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.illustration-left img {
  max-width: 600px; /* 300px'ten 400px'e çıkarıldı (resimleri büyütmek için) */
  width: 100%;
  height: auto;
  display: block;
}

/* Sağdaki illüstrasyon (alt köşede sabitlenecek) */
.illustration-right {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.illustration-right img {
  max-width: 600px; /* 300px'ten 400px'e çıkarıldı (resimleri büyütmek için) */
  width: 100%;
  height: auto;
  display: block;
}




/* Login kutusunu ortalamak için container */
.login-wrapper {
  width: 400px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  padding: 40px;
  z-index: 1; 
  position: relative;
  top: 50px; 
}

/* Logo / Marka adı */
.logo-section {
  text-align: center;
  margin-bottom: 20px;
}
.brand-name {
  font-size: 28px;
  color: #0052cc;
}



/* Logo kısmı (h1 başlıkla birlikte logo) */
.logo-section {
  text-align: center; /* Ortada görünmesini istiyorsanız bırakabilirsiniz */
  margin-bottom: 20px;
}

/* Logo ve başlığı yatayda hizalamak için flex düzen */
.logo-brand-combo {
  display: inline-flex;   /* Logo ve metni aynı satıra al */
  align-items: center;    /* Dikeyde ortalama */
  gap: 8px;               /* Aralarındaki boşluk */
}

/* Logo resmi */
.logo-img {
  width: 42px;            /* Logonun genişliği */
  height: auto;           /* Oran korunsun */
}

/* Başlık stili */
.brand-name {
  font-size: 28px;
  color: #0052cc;
  margin: 0; /* Varsayılan boşluğu sıfırlamak için */
}



/* Giriş paneli */
.login-box {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.login-title {
  font-size: 18px;
  font-weight: 500;
  color: #172b4d;
  margin-bottom: 20px;
}

/* Input alanları */
.input-group {
  margin-bottom: 15px;
}
.input-group input {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #c1c7d0;
  border-radius: 4px;
  outline: none;
}
.input-group input:focus {
  border-color: #0052cc;
}

/* Remember me */
.remember-me-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  margin-bottom: 15px;
}
.remember-me-group input {
  margin-right: 5px;
}

/* Devam Butonu */
.btn-primary {
  width: 100%;
  padding: 12px 0;
  background-color: #0052cc;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  margin-bottom: 15px;
}
.btn-primary:hover {
  background-color: #0065ff;
}

/* Or continue with... yazısı */
.or-continue {
  font-size: 14px;
  color: #707070;
  margin: 10px 0;
}

/* Sosyal login butonları */
.social-login-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.btn-social {
  width: 100%;
  padding: 10px 0;
  border: 1px solid #c1c7d0;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-social:hover {
  background-color: #f1f1f1;
}

/* Alt linkler (Can't log in? / Create an account) */
.footer-links {
  font-size: 14px;
  color: #707070;
}
.footer-links a {
  color: #0052cc;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* Alt açıklama */
.footer-info {
  text-align: center;
  font-size: 13px;
  color: #97a0af;
}
.brand-footer {
  color: #172b4d;
  margin-bottom: 5px;
  font-size: 16px;
}
/* Sosyal medya butonları logoları */
/* Sosyal medya butonları */
.btn-social {
  width: 100%;
  padding: 10px 0;
  border: 1px solid #c1c7d0;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  font-size: 14px;
  color: #444;
  display: flex; /* Flexbox düzenini kullan */
  align-items: center; /* Dikeyde ortala */
  justify-content: center; /* Yatayda ortala */
  gap: 8px; /* Logo ve metin arasına boşluk ekle */
}
.btn-social:hover {
  background-color: #f1f1f1;
}

/* Sosyal medya butonları logoları */
.social-logo {
  width: 20px; /* Küçük logo boyutu */
  height: 20px; /* Sabit yüksekliği koru */
  object-fit: contain; /* Logo düzgün şekilde sığar */
  display: inline-block; /* Doğru hizalama için */
}

/* Google stili */
.btn-social.google {
  border-color: #c1c7d0;
}
.btn-social.google:hover {
  background-color: #e8f0fe;
}

/* Microsoft stili */
.btn-social.microsoft {
  border-color: #c1c7d0;
}
.btn-social.microsoft:hover {
  background-color: #fce4e3;
}

/* Apple stili */
.btn-social.apple {
  border-color: #c1c7d0;
}
.btn-social.apple:hover {
  background-color: #c1c7d0;
}

/* Slack stili */
.btn-social.slack {
  border-color: #c1c7d0;
}
.btn-social.slack:hover {
  background-color: #f6eefc;
}
