/* =========================
   Auth Navbar
========================= */

.auth-navbar {
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
}

.auth-navbar .logo {
  color: #2563eb;
}

.auth-navbar .nav-links a {
  color: #0f172a;
}

.auth-navbar .nav-links a:hover {
  color: #2563eb;
}

/* =========================
   Authentication Pages
========================= */

.auth-section {
  padding: 40px 0 80px;
  min-height: auto;
  background: #f8fafc;
}

.auth-card {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 58%;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.auth-left {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  color: #fff;
  padding: 70px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-left h1 {
  font-size: 42px;
  margin: 20px 0;
}

.auth-left p {
  line-height: 1.8;
  opacity: 0.9;
}

.auth-features {
  margin-top: 30px;
  list-style: none;
  padding: 0;
}

.auth-features li {
  margin-bottom: 15px;
  font-size: 16px;
}

.auth-right {
  padding: 70px 55px;
  display: flex;
  align-items: center;
}
.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input {
  box-sizing: border-box;
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  font-size: 15px;
  transition: 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #2563eb;
}

.auth-right .btn {
  width: 100%;
  margin-top: 10px;
}

.auth-link {
  margin-top: 25px;
  text-align: center;
}

.auth-link a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 992px) {
  .auth-card {
    grid-template-columns: 1fr;
  }

  .auth-left {
    padding: 40px;
  }

  .auth-right {
    padding: 40px;
  }

  .auth-left h1 {
    font-size: 32px;
  }
}
/* =========================
   Profile Page
========================= */

.profile-header {
  margin-bottom: 30px;
}

.profile-header h2 {
  margin-bottom: 8px;
}

.profile-header p {
  color: #64748b;
}

#saveProfileBtn,
#logoutBtn {
  width: 100%;
  margin-top: 15px;
}

#logoutBtn {
  background: #e2e8f0;
  color: #0f172a;
}
/* =========================
   Profile Sidebar
========================= */

.profile-sidebar{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.profile-avatar{
    width:160px;
    height:160px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid rgba(255,255,255,.2);
    margin-bottom:20px;
}

#uploadImageBtn{
    margin-bottom:25px;
}

#sidebarUserName{
    margin-bottom:8px;
    color:#fff;
}

#sidebarUserEmail{
    color:rgba(255,255,255,.8);
    word-break:break-word;
}