body.page-template-default.page.page-id,
body {
  background: #f5f7fb;
}

.tfrx-login-wrap {
  max-width: 420px;
  margin: 60px auto;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tfrx-login-wrap h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 2rem;
  line-height: 1.2;
  color: #1f2a44;
}

.tfrx-login-wrap label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #24324a;
}

.tfrx-login-wrap input[type="text"],
.tfrx-login-wrap input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d4d9e2;
  border-radius: 8px;
  background: #fff;
  color: #1f2a44;
  font-size: 1rem;
}

.tfrx-login-wrap input[type="text"]:focus,
.tfrx-login-wrap input[type="password"]:focus {
  outline: none;
  border-color: #1d6fdc;
  box-shadow: 0 0 0 3px rgba(29, 111, 220, 0.12);
}

.tfrx-login-wrap .tfrx-field {
  margin-bottom: 18px;
}

.tfrx-login-wrap .tfrx-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #3d4b63;
}

.tfrx-login-wrap .tfrx-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  background: #1d6fdc;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.tfrx-login-wrap .tfrx-submit:hover {
  background: #1559b5;
}

.tfrx-login-message {
  margin-top: 14px;
  font-size: 0.95rem;
  color: #24324a;
}

@media (max-width: 767px) {
  .tfrx-login-wrap {
    margin: 30px 16px;
    padding: 22px;
  }

  .tfrx-login-wrap h2 {
    font-size: 1.7rem;
  }

  .tfrx-login-wrap .tfrx-submit {
    width: 100%;
  }
}
