.elementor-48897 .elementor-element.elementor-element-72cc69b{--display:flex;}.elementor-48897 .elementor-element.elementor-element-ca47aa2{width:100%;max-width:100%;}.elementor-48897 .elementor-element.elementor-element-ca47aa2 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}body.elementor-page-48897:not(.elementor-motion-effects-element-type-background), body.elementor-page-48897 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://mtecnologia.com.br/wp-content/uploads/2023/12/mtecnologia-fundo-001.png");background-repeat:no-repeat;}:root{--page-title-display:none;}@media(min-width:1025px){body.elementor-page-48897:not(.elementor-motion-effects-element-type-background), body.elementor-page-48897 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-attachment:fixed;}}/* Start custom CSS *//* Fundo gradiente cinza */
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  
  padding: 20px;
}

/* Cartão central */
.login-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
  padding: 40px 30px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Título */
.login-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #222;
  font-weight: 700;
}

/* Subtítulo */
.login-card .subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

/* Formulário */
.custom-login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.custom-login-form label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

.custom-login-form input[type="text"],
.custom-login-form input[type="password"] {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.custom-login-form input[type="text"]:focus,
.custom-login-form input[type="password"]:focus {
  border-color: #666;
  box-shadow: 0px 0px 6px rgba(100,100,100,0.3);
}

/* Botão de login e links */
.custom-login-form input[type="submit"],
.btn-voltar {
  background: #444;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.custom-login-form input[type="submit"]:hover,
.btn-voltar:hover {
  background: #222;
}

/* Mensagem de erro */
.message {
  color: #d9534f;
  font-size: 13px;
  margin-bottom: 15px;
}/* End custom CSS */