* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}

h1 {
  font-size: 2.5rem;
}

.container {
  background: #cecece;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  height: 100vh;
}

.fieldset {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-color: black;
  border-radius: 5px;
  border-style: solid;
  border-width: 1pt;
  padding: 1rem;
  background: #f6f6f6;
}

label {
  font-size: smaller;
  margin-bottom: 0.5rem;
}

button {
  padding: 0.5rem;
  font: inherit;
  border-color: black;
  border-radius: 5px;
  border-style: solid;
  border-width: thin;
  border-right: none;
}

.sign {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  position: fixed;
  top: 1px;
  right: 10px;
  user-select: none;
}

.img {
  flex: 1;
  border-color: black;
  border-style: solid;
  border-width: thin;
  height: auto;
}

input[type='text'],
input[type='submit'],
select {
  width: 100%;
  font-size: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
}

select {
  font-family: monospace;
  letter-spacing: 0.25rem;
  border-color: black;
  border-style: solid;
  border-width: thin;
  text-align: center;
}

input[type='text'] {
  font-family: monospace;
  letter-spacing: 0.25rem;
  border-color: black;
  border-style: solid;
  border-width: thin;
  text-align: center;
}

input[type='submit'] {
  border-color: black;
  border-style: solid;
  border-width: thin;
}

.align {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
}

.item {
  width: 100%;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
}

.group {
  width: 100%;
  display: flex;
  padding: 0.5rem;
  justify-content: space-between;
}

.item-node {
  display: flex;
  width: 40%;
  flex-direction: column;
}

.captcha {
  display: flex;
  flex-direction: row;
  align-items: last baseline;
}

.refresh {
  flex: 1;
  display: flex;
  align-items: center;
  width: 25px;
  height: 25px;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
}

code {
  position: fixed;
  left: 1px;
  bottom: 1px;
  user-select: none;
}

.mensaje-movil {
  display: none;
}

.mensaje-movil p {
  font-size: 1.25rem;
}

/*
@media (max-width: 768px) {
  main {
    display: none;
  }

  .mensaje-movil {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f8f8;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .mensaje-movil p {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: #444;
  }
}
*/

@media (min-width: 1440px) {
  .sign h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .sign h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 800px) and (max-width: 1024px) {
  .sign h1 {
    font-size: 2rem;
  }
}

@media (max-width: 800px) {
  body {
    font-size: 0.9rem;
  }

  .sign h1 {
    font-size: 1.75rem;
  }
}
