:root {
  --primary-color: #BBCD5D;
  --border-color: #DEE2E6;
  --hover-color: #F8F9FA;
}

body {
  background: linear-gradient(140deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
}

.auth-container {
  background: #ffffff;
  width: 100%;
  max-width: 450px;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.auth-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.auth-heading h1 {
  font-weight: 600;
  color: #2C3E2F;
  margin-bottom: 0.5rem;
}

.auth-heading p {
  color: #6C757D;
  font-size: 0.95rem;
}

.input-group-crm {
  position: relative;
  margin-bottom: 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.input-group-crm:hover,
.input-group-crm:focus-within {
  border-color: var(--primary-color);
  background: var(--hover-color);
}

.input-icon {
  padding: 0 1rem;
  color: #6C757D;
  min-width: 45px;
  text-align: center;
}

.form-control-crm {
  border: none;
  background: transparent;
  padding: 1rem 0.5rem;
  flex-grow: 1;
  height: 100%;
  outline: none;
  box-shadow: none !important;
}

.password-toggle {
  cursor: pointer;
  padding: 0 1rem;
  color: #6C757D;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: var(--primary-color);
}

.btn-login {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  border: none;
  font-weight: 600;
  color: #2C3E2F;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-login:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.alert {
  text-align: center;
  font-size: 0.9rem;
}