:root {
  --accent-color: #f28220; /* ideart orange */
}

/* Wrapper */
.ipe-login-wrap {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card */
.ipe-login-card {
  width: 360px;
  margin: 20px;
  background: #9c9c9c;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Header */
.ipe-login-header {
  padding: 40px 20px 0 20px;
  text-align: center;
}

.ipe-admin-logo {
  width: 126px;
}

.ipe-logo-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
}

/* Form */
.ipe-login-form {
  padding: 25px;
  background: #9c9c9c;
}

.ipe-field {
  margin-bottom: 18px;
}

.ipe-field label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #222;
}

.ipe-field input {
  width: 100%;
  padding: 5px 12px !important;
  border-radius: 6px !important;
  border: none;
  font-size: 13px;
  background: #e2e2e2 !important;
}

.ipe-field input:focus,
.ipe-field select:focus,
.ipe-field textarea:focus {
  background: #ffffff !important;
  border-color: #b5b5b5;
  outline: none;
}

/* ---------- Buttons ---------- */
.ipe-login-button {
  width: 100%;
  margin-top: 20px;
  font-size: 13px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--accent-color);
  border: 1px solid #f1f1f1;
  color: #ffffff;
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}

.ipe-login-button:hover {
  background: #ffffff !important;
  color: var(--accent-color) !important;
  border: 1px solid var(--accent-color);
}

/* Primary */
.ipe-frontend .button-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
}

.ipe-login-button:hover {
  background: var(--accent-color);
}

/* Error */
.ipe-login-error {
  background: #555555;
  color: var(--accent-color);
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
}
