:root {
  --primary-color: #0064ff;
  --hover-color: #005ae6;
  --bg: #e5f3fd;
  --card-bg: #fff;
  --border-color: #8d8d8d;
  --text-primary: #000;
  --text-secondary: #8d8d8d;
}
html,
body {
  height: 100%;
  margin: 0;
  background-color: var(--bg);
  background-image: url(/assets/images/background-light.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-primary);
}
.main-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.login-container {
  background: var(--card-bg);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: 1000px;
  min-height: 520px;
}
.login-header {
  padding: 1rem 2.5rem;
  border-bottom: 1px solid var(--bg);
  backdrop-filter: blur(6px);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.login-header h6 {
  margin: 0;
  color: var(--text-secondary);
  font-weight: 500;
}
.login-body {
  display: flex;
  min-height: 420px;
}
.login-left,
.login-right {
  width: 50%;
  padding: 3rem;
}
.login-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.app-image {
  width: 75px;
  height: 75px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.login-left h2 {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.login-left p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.login-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-control {
  border-radius: 12px;
  padding: 0.6rem 1rem;
  border: 1px solid var(--text-secondary);
  background: transparent;
}
.form-control:focus {
  background: transparent;
}
.form-control::placeholder {
  color: var(--text-secondary);
  opacity: 1;
}
.btn-primary {
  background-color: var(--primary-color);
  border-radius: 12px;
  border: none;
}
.step-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.step-dot {
  width: 10px;
  height: 10px;
  background-color: var(--border-color);
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}
.step-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}
@media (max-width: 992px) {
  .login-body {
    flex-direction: column;
  }
  .login-left,
  .login-right {
    width: 100%;
  }
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  border: 1px solid var(--text-secondary);
  background: transparent;
  color: var(--text-primary);
  transition: 0.2s;
}

.social-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.divider {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  margin: 1rem 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.divider span {
  padding: 0 1rem;
  font-size: 0.875rem;
}
