:root {
  --acv-primary: #7dc242;
  --acv-dark: #1f1f1f;
  --acv-text: #333;
  --acv-muted: #6c757d;
  --acv-bg: #f5f7f9;
  --acv-card: #ffffff;
}

body {
  background: var(--acv-bg);
  color: var(--acv-text);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.acv-login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acv-login-card {
  width: 100%;
  max-width: 420px;
  background: var(--acv-card);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 32px 32px 28px;
}

.acv-login-brand {
  text-align: center;
  margin-bottom: 24px;
}

.acv-login-logo {
  width: 160px;
  height: auto;
  margin-bottom: 16px;
}

.acv-login-brand h1 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 8px;
  color: var(--acv-dark);
}

.acv-login-brand p {
  margin: 0;
  color: var(--acv-muted);
  font-size: 14px;
}

.acv-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--acv-dark);
}

.acv-login-text {
  margin: 0 0 16px;
  color: var(--acv-text);
  font-size: 15px;
  line-height: 1.5;
}

.acv-login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.acv-field label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.acv-input {
  width: calc(100% - 30px);
  border: 1px solid #d9dde3;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}

.acv-input:focus {
  border-color: var(--acv-primary);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.18);
}

.acv-password-wrap {
  position: relative;
}

.acv-password-wrap .acv-input {
  width: calc(100% - 52px);
  padding-right: 38px;
}

.acv-password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 4px;
}

.acv-password-toggle:focus {
  outline: 2px solid var(--acv-primary);
  border-radius: 6px;
}

.acv-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--acv-muted);
}

.acv-button {
  background: var(--acv-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.acv-button:hover {
  filter: brightness(0.95);
}

.acv-login-links {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.acv-login-links a {
  color: var(--acv-dark);
  text-decoration: none;
}

.acv-login-links--center {
  justify-content: center;
}

.acv-button--link {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.acv-login-links a:hover {
  text-decoration: underline;
}

.acv-login-alert {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 12px;
}

.acv-login-alert--error {
  background: #ffe8e8;
  color: #b02a2a;
}

.acv-login-alert--success {
  background: #e7f7ee;
  color: #1e7e34;
}

#kc-header-wrapper {
  display: none;
}
.alert-success, .alert-info, .alert-warning {
  display: none;
}