/* Primera fuente */
@font-face {
  font-family: 'Fuente1';
  src: url('../font/NeueMachina-Light.woff2') format('opentype'),
  url('../font//NeueMachina-Regular.otf') format('opentype'),
  url('../font/NeueMachina-Ultrabold.otf') format('opentype');
}

/* Segunda fuente */
@font-face {
  font-family: 'Fuente2';
  src: url('../font/PPTelegraf-Regular.otf') format('opentype'),
  url('../font/PPTelegraf-UltraBold.otf') format('opentype'),
  url('../font/PPTelegraf-UltraLight.otf') format('opentype');
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #dbdbdb;
  margin: 0;
  padding: 0;
}

.body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background-color: transparent;
  display: flex;
  justify-content: flex-end; /* Cambiado de flex-end a space-between */
  align-items: center;
  height: 55px;
  padding: 3px 5%;
  margin: 0px;
  border-radius: 25px 25px 0 0;
  width: 100%;
}

.header .logo {
  cursor: pointer;
  margin-right: auto;
}

.header .logo a {
  text-decoration: none;
  font-size: 30px;
  color: #000;
  transition: all 0.3s;
  font-family: 'Fuente1', sans-serif;
  font-weight: 900;
}

.header .logo a:hover {
  cursor: pointer;
}

.header .navLinks {
  list-style: none;
}

.header .navLinks li {
  display: inline-block;
  padding: 0 28px;
}

.header .navLinks li:hover {
  /* transform: scale(1.3); */
  transition: 0.1s;
}

.header .navLinks a {
  font-size: 700;
  color: #000;
  text-decoration: none;
  font-family: 'Fuente2', sans-serif;
  letter-spacing: 1px;
  transition: 0.1s;
}

.header .navLinks li a:hover {
  letter-spacing: 2px;
  font-weight: bold;
}

.header .btn button {
  font-family: 'Fuente2', sans-serif;
  
  font-size: 18px;
  color: #000;
  padding: 5px 25px;
  background: transparent;
  border: 1px solid #000;
  border-radius: 50px;
  cursor: pointer;
  transform: all 0.1s ease 0s;
}


.header .btn button:hover {
  background-color: #000;
  border: solid 1px #3e3e3e;
  transition: 0.2s;
  color: #fff;
  font-weight: bold;
}




main {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  flex-direction: column;
}

div h2{
  font-family: 'Fuente1', sans-serif;
  margin-bottom: 20px;
}

form input,
form button{
  font-family: 'Fuente2', sans-serif;
}

.containerLog {
  text-align: center;
  margin-bottom: 20px;
}

.formLog {
  /* border: 1px solid #ccc; */
  padding: 20px;
  border-radius: 5px;
}

h2{
  font-family: 'Fuente1', sans-serif;
  margin-bottom: 20px;
  position: relative;
  bottom: 50px;
  font-size: 30px;
}

.login{
  width: 400px;
}

.user,
.pass{
  margin-bottom: 10px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  font-size: 16px;
  background-color: transparent;
  border: none;
  border-bottom:1px #000 solid;
  color: #000;
  outline: none;
}

.user::placeholder,
.pass::placeholder{
  font-weight: bold;
}

.user{
  margin-bottom: 30px;
}

.pass{
  margin-bottom: 10px;
}

.btn2 {
  height: 40px;
  width: 140px;
  margin-top: 30px;
  position: relative;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid #000;
  overflow: hidden;
  border-radius: 30px;
  color: #000;
  font-size: 13px;
  font-weight: 300;  /* Ajusta el peso de la fuente */
  letter-spacing: 4px;  /* Ajustar el espaciado entre caracteres */
  text-transform: uppercase; /* Ajusta la transformación de texto */
  transition: all 0.1s ease-in-out;
}

.btn2:hover{
  background-color: #000;
  color: #dbdbdb;
  font-weight: bold;
}


