.cl-auth-register-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 2px;
  padding: 13px 14px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 11px;
  background: rgba(212, 175, 55, 0.06);
}

.cl-auth-register-label {
  color: #bdbdbd;
  font-size: 12px;
}

.cl-auth-register-button {
  appearance: none;
  border: 1px solid #d4af37;
  border-radius: 8px;
  background: transparent;
  color: #d4af37;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  padding: 10px 13px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cl-auth-register-button:hover,
.cl-auth-register-button:focus {
  background: #d4af37;
  color: #090a0d;
  outline: none;
  transform: translateY(-1px);
}

.cl-auth-register-button-attention {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.cheflock-auth-message.cl-auth-registration-guidance {
  line-height: 1.55;
}

@media (max-width: 520px) {
  .cl-auth-register-callout {
    align-items: stretch;
    flex-direction: column;
  }

  .cl-auth-register-button {
    width: 100%;
  }
}
