body.login-page { background: #ffffff !important; display: block !important; align-items: initial !important; justify-content: initial !important; height: auto !important; }
.auth-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; width: 100vw; }
.auth-hero { position: relative; background: radial-gradient(circle at 30% 30%, #0b7be8 0%, #0a6bd0 40%, #095fbb 70%, #084fa0 100%); }
.auth-hero-inner { min-height: 100vh; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; color: #fff; text-align: center; }
.auth-hero-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; }
.auth-hero-logo .logo-icon { width: 60px; }
.auth-hero-logo .logo-text { height: 28px; }
.auth-hero-illustration {
  width: min(420px, 65vh);
  height: min(420px, 65vh);
  border-radius: 50%;
  background-image: url('https://rehbersepeti.com/assets/images/login/1.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(255,255,255,0.10);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
  margin: 1rem 0 1.2rem 0;
}
.auth-hero-title { font-weight: 800; font-size: 1.6rem; margin: 0.2rem 0 0.4rem 0; }
.auth-hero-sub { opacity: 0.9; }
.auth-form { display: flex; align-items: center; justify-content: center; padding: 2rem; width: 100%; }
.auth-form .main-content { width: 100%; max-width: 480px; }
.main-content.login-center {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
.login-wrapper {
  max-width: 440px;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44,62,80,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-header {
  color: #0070d6;
  text-align: center;
  margin-bottom: 1.2rem;
}
.login-header .login-logo {
  font-size: 2.5rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.login-header .login-logo .logo-icon {
  height: 40px;
  width: auto;
}
.login-header .login-logo .logo-text {
  height: 28px;
  width: auto;
}
.login-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.login-subtitle {
  font-size: 1.02rem;
  color: #0055d6;
  opacity: 0.85;
  margin-bottom: 0.7rem;
}
.login-body {
  width: 100%;
}
.btn-google {
  background: #fff;
  color: #374151;
  border: 2px solid #e5e7eb;
  width: 100%;
  padding: 0.9rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  transition: box-shadow 0.2s, border 0.2s;
}
.btn-google:hover {
  border: 2px solid #0070d6;
  box-shadow: 0 2px 8px rgba(0,112,214,0.10);
}
.divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: #9ca3af;
  font-size: 0.95rem;
}
.divider span {
  padding: 0 1rem;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}
.form-group {
  margin-bottom: 1.2rem;
  position: relative;
}
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
  font-size: 0.97rem;
}
.form-control {
  width: 100%;
  padding: 1rem 2.3rem !important;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  font-size: 1.05rem;
  background: #f9fafb;
  transition: border 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: #0070d6;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,112,214,0.15);
}
.input-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #b0b0b0;
  font-size: 1rem;
  opacity: 0.7;
  pointer-events: none;
  z-index: 2;
}
.password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 1.1rem;
}
.password-toggle:hover { color: #0070d6; }
.btn-primary {
  background: linear-gradient(135deg, #0070d6 0%, #005fb3 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  width: 100%;
  padding: 0.95rem;
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 8px rgba(0,112,214,0.15);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}
.btn-primary:hover { background: linear-gradient(135deg, #005fb3 0%, #0070d6 100%); }
.btn-company {
  background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  width: 100%;
  padding: 0.95rem;
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}
.btn-company:hover {
  background: linear-gradient(135deg, #23272f 0%, #374151 100%);
}
.forgot-password {
  text-align: center;
  margin: 1.2rem 0 0.2rem 0;
}
.forgot-password a { color: #0070d6; text-decoration: none; font-weight: 500; font-size: 0.97rem; }
.forgot-password a:hover {
  text-decoration: underline;
}
.register-link {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e5e7eb;
}
.register-link p {
  color: #6b7280;
  margin-bottom: 0.5rem;
}
.register-link a { color: #0070d6; text-decoration: none; font-weight: 700; }
.register-link a:hover {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .auth-layout { display: block; }
  .auth-hero { display: none; }
  .auth-form { padding: 12px; }
  .main-content.login-center { min-height: auto; padding: 0 8px; }
  .login-wrapper { max-width: 98vw; padding: 1.2rem 0.5rem; border-radius: 12px; margin: 1.2rem 0; }
}
.company-application-wrapper.login-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
@media (max-width: 900px) {
  .company-application-wrapper.login-wrapper {
    max-width: 100vw;
    padding-left: 12px;
    padding-right: 12px;
  }
} 