
/*   body { */
/*         background-color: #000; Fundo preto para destacar */
/*         font-family: 'Orbitron', sans-serif; */
/*         color: #fff; */
/*         text-align: center; */
/*     } */

/*     .login-container { */
/*         background: rgba(20, 20, 20, 0.9); */
/*         padding: 40px; */
/*         border-radius: 15px; */
/*         width: 350px; */
/*         margin: 100px auto; */
/*         box-shadow: 0px 0px 20px rgba(0, 200, 255, 0.6); */
/*     } */

/*     h2 { */
/*         font-size: 48px; */
/*         letter-spacing: 8px; */
/*         margin: 0; */
/*     } */

/*     h3 { */
/*         font-size: 22px; */
/*         letter-spacing: 5px; */
/*         color: #0ff; Azul futurista */
/*         margin: 5px 0 20px; */
/*     } */

/*     .intro-text { */
/*         font-size: 14px; */
/*         color: #ccc; */
/*         margin-bottom: 20px; */
/*     } */

/*    input,  */
/* .btn { */
/* 	text-align: center;  */
/*     display: block; */
/*     width: 100%;              mantém alinhado */
/*     padding: 12px; */
/*     margin: 10px 0; */
/*     border: none; */
/*     border-radius: 5px; */
/*     font-family: 'Orbitron', sans-serif; */
/*     font-size: 14px; */
/*     box-sizing: border-box;   evita que padding estoure a largura */
/* } */

/* .btn { */
/*     background: #0ff; */
/*     font-weight: bold; */
/*     font-size: 16px; */
/*     cursor: pointer; */
/*     transition: 0.3s; */
/* } */

/* .btn:hover { */
/*     background: #00cccc; */
/* } */

/*     .register { */
/*         margin-top: 15px; */
/*         font-size: 13px; */
/*     } */

/*     .register a { */
/*         color: #0ff; */
/*         text-decoration: none; */
/*     } */

/*     .register a:hover { */
/*         text-decoration: underline; */
/*     } */

/*     #mensagem { */
/*         margin-top: 15px; */
/*         font-size: 14px; */
/*     } */


@import url('https://fonts.googleapis.com/css?family=Open+Sans');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
  background-image: url("../Imgs/FundoLogin.png");
  background-size: cover;

  width: 100%;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .login-container {
  				
            background-color: rgba(0, 19, 51, 0.9);
            padding: 40px;
            border-radius: 10px;
            width: 350px;
            max-width: 400px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            color: white;
            text-align: center;
        }

        .login-container h2 {
            text-align: center;
            margin-bottom: 10px;
            font-size: 36px;
        }

        .form-group {
            margin-bottom: 20px;
        }

.login-container input[type="text"],
.login-container input[type="password"] {
  width: 100%;
  margin-bottom: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  outline: none;
  padding: 12px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  box-shadow: inset 0 -5px 45px rgba(100, 100, 100, 0.2), 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: box-shadow 0.5s ease;
}
/* Botão */
.login-container button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-container button:hover {
  background-color: #0056b3;
}

/* Link para registro */
.login-container .register {
  margin-top: 20px;
  font-size: 0.9rem;
}

.login-container .register a {
  color: #00bfff;
  text-decoration: none;
}

.login-container .register a:hover {
  text-decoration: underline;
}
#empresaForm select {
  width: 100%;
  margin-bottom: 10px;
  margin-top: 15px;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  outline: none;
  padding: 12px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  box-shadow: inset 0 -5px 45px rgba(100, 100, 100, 0.2),
              0 1px 1px rgba(255, 255, 255, 0.2);
  transition: box-rgb(79, 163, 255)0.5s ease;
  appearance: none; /* Remove estilo padrão do sistema */
  cursor: pointer;
}
#empresaStep h2 {
  margin-bottom: 20px; /* Ajuste o valor conforme preferir */
}
#empresaForm select:focus {
    border-color: #007bff; 
}