.wp-auth {
  min-height: 100vh;
}

.wp-card {
  margin: 30px 20px 0 10px;
}

.wp-tab-content {
  display: none;
  margin: 20px 0 25px 0;
}

.wp-tab-content.is-active {
  display: block;
}

.wp-header {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wp-header h1 {
  font-weight: bold;
  font-size: 32px;
  margin: 0;
}

.wp-header a {
  font-weight: bold;
  color: #999999;
}

.wp-header a:hover {
  color: #005c6a;
}

.wp-tab {
  font-weight: bold;
  color: white;
  background-color: #005c6a;
  border: none;
}

.wp-tab:hover {
  background-color: #999999;
  color: white;
}

.wp-tab.is-active {
  color: white;
  background-color: #999999;
}

.wp-tab-content form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wp-tab-content label {
  font-weight: 600;
  padding: 0%;
  color: #005c6a;
  margin-bottom: 20px;
  display: block;
}

.wp-tab-content input {
  width: 100%;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  outline: none;
  transition: border-color 0.2s;
}

.wp-tab-content input:focus {
  border-color: #005c6a;
}

/* Botão */
.form-actions button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background-color: #005c6a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.3s, opacity 0.3s;
}

.form-actions button:hover {
  background-color: #999999;
}

.form-actions button:focus,
.form-actions button:focus-visible,
.form-actions button:active {
  background-color: #005c6a;
  outline: none !important;
  box-shadow: none !important;
}

/* texto normal */
.form-alteracao .btn-text {
  display: inline-block;
}

/* loader escondido */
.form-alteracao .btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* estado carregando */
.form-alteracao button.is-loading {
  pointer-events: none;
  opacity: 0.8;
}

.form-alteracao button.is-loading .btn-text {
  display: none;
}

.form-alteracao button.is-loading .btn-loader {
  display: inline-block;
}

/* animação */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.mensage_error {
  display: none;
  color: #fff;
  background-color: #d32f2f;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
  margin: 20px 0 20px 0;
}

/* Quando houver erro */
.mensage_error.is-active {
  display: inline-block;
}

.input-error {
  border: 1px solid #ff4d4d !important;
}

.mensage_success {
  display: none;
  color: #fff;
  background-color: #2e7d32;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
  margin: 20px 0 20px 0;
}

/* Quando houver erro */
.mensage_success.is-active {
  display: inline-block;
}

.wp-content form {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* gap: 16px; */
}

.wp-content label {
  font-weight: 600;
  padding: 0%;
  color: #005c6a;
  margin: 20px 0 20px 0;
  display: block;
}

.wp-content input {
  width: 100%;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  outline: none;
  transition: border-color 0.2s;
}

.wp-content input:focus {
  border-color: #005c6a;
}

.password_legend {
  font-size: 14px;
  font-weight: 600;
  color: #999999;
  margin-top: -8px;
}

/* Mostrar senha */
.show-password {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: -8px;
}

/* Remove o estilo global do input */
.show-password input[type="checkbox"] {
  width: auto;
  border: none;
  /* padding: 0;
  margin: 0; */
  accent-color: #005c6a; /* cor do checkbox */
}

/* Label do checkbox */
.show-password label {
  font-size: 14px;
  font-weight: 600;
  color: #999999;
  cursor: pointer;
}

.recaptcha-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  text-align: left !important;
}

.recaptcha-wrapper {
  transform-origin: 0 0;
}

/* Telas muito pequenas */
@media (max-width: 360px) {
  .recaptcha-wrapper {
    transform: scale(0.75);
  }
}


