/* Login Sayfası Özel Stilleri */
.login-content-info {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #232629;
  overflow: hidden;
}

.account-content {
  max-width: 450px;
  width: 100%;
  background-color: #fff;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Login şekilleri kaldırılıyor */
.login-shapes {
  display: none;
}

/* Geri dönüş linki */
.login-back a {
  color: #c29765;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 25px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.login-back a:hover {
  color: #232629;
}

.login-back a i {
  margin-right: 8px;
}

/* Login başlık alanı */
.login-title {
  margin-bottom: 30px;
  border-bottom: 2px solid #c29765;
  padding-bottom: 15px;
}

.login-title h3 {
  font-size: 28px;
  font-weight: 600;
  color: #232629;
  margin-bottom: 10px;
}

.login-title p {
  color: #666;
  font-size: 14px;
}

/* Form alanları */
.form-control {
  height: 45px;
  border: 1px solid #e0e0e0;
  background-color: #f8f8f8;
  color: #232629;
  padding: 0 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #c29765;
  box-shadow: none;
  background-color: #fff;
}

/* Label stilleri */
label {
  color: #232629;
  font-weight: 500;
}

/* Şifremi unuttum linki */
.forgot-link {
  color: #c29765;
  font-size: 13px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.forgot-link:hover {
  color: #232629;
  text-decoration: none;

}

/* Şifre görünürlük butonu */
.pass-group {
  position: relative;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #c29765;
  cursor: pointer;
}

/* Buton stilleri */
.btn {
  background-color: #c29765;
  color: #fff;
  border: none;
  height: 45px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #c29765;
  color: #fff;
}

/* Sign in buton stili */
form .btn[type="submit"] {
  background-color: #232629;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  border: 1px solid #232629;
}

form .btn[type="submit"]:hover {
  background-color: #c29765;
  border-color: #c29765;
  color: #fff;
}

/* "veya" ayracı */
.login-or {
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.or-line {
  height: 1px;
  background-color: #e0e0e0;
  position: relative;
}

.span-or {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 0 10px;
  color: #777;
  font-size: 13px;
}

/* Google giriş butonu */
.social-login-btn .btn {
  background-color: #fff;
  color: #232629;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-login-btn .btn:hover {
  background-color: #f8f8f8;
  color: #232629;
  border-color: #c29765;
}

.social-login-btn img {
  margin-right: 10px;
}

/* Kaydol linki */
.account-signup {
  text-align: center;
  margin-top: 25px;
}

.account-signup p {
  color: #666;
  font-size: 14px;
}

.account-signup a {
  color: #c29765;
  font-weight: 500;
  transition: color 0.3s ease;
}

.account-signup a:hover {
  color: #232629;
  text-decoration: underline;
}

/* Checkbox stili */
.custom_check {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  color: #666;
  font-size: 14px;
  user-select: none;
}

.custom_check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
}

.custom_check:hover input ~ .checkmark {
  border-color: #c29765;
}

.custom_check input:checked ~ .checkmark {
  background-color: #c29765;
  border-color: #c29765;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom_check input:checked ~ .checkmark:after {
  display: block;
}

.custom_check .checkmark:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Responsive ayarlar */
@media (max-width: 767px) {
  .account-content {
    padding: 30px 20px;
    margin: 0 15px;
  }
  
  .login-title h3 {
    font-size: 24px;
  }
} 