* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

html {
  background-color: white;
  scroll-behavior: smooth;
  height: auto;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

:root {
  --main-color: white;
  --secundary-color: #c0bbbb;
  --tertiary-color: #6fa9e4;
}

.login-box {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  width: 400px;
  text-align: center;
}

.login-box h2 {
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

input {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

button:hover {
  border: 1px solid #000;
  color: #000;
  background-color: white;
}

.info-codigo {
  margin-bottom: 20px;
  color: #555;
}

#codigo-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.codigo-input {
  width: 45px;
  height: 50px;
  text-align: center;
  font-size: 1.5rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease;
}

.codigo-input:focus {
  border-color: var(--tertiary-color);
  box-shadow: 0 0 5px rgba(111, 169, 228, 0.5);
}

.codigo-input::-webkit-outer-spin-button,
.codigo-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.codigo-input[type="number"] {
  -moz-appearance: textfield;
}

#email-msg,
#codigo-msg {
  font-weight: bold;
  margin-top: 12px;
  height: 1.2em;
}

.aceitar-termos-container {
  display: flex;
  align-items: center;
  text-align: left;
  margin-top: 15px;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #555;
}

.aceitar-termos-container input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  flex-shrink: 0;
}

.aceitar-termos-container label {
  line-height: 1.4;
}

.verificando {
  color: var(--tertiary-color);
}

.sucesso {
  color: rgb(7, 243, 7);
}

.erro {
  color: red;
}

.politicas {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.politicas a {
  color: var(--tertiary-color);
  font-size: 15px;
  margin-top: -20px;
}

.politicas a:hover {
  text-decoration: underline;
  color: #000;
}

.footer {
  margin-top: 30px;
  font-size: 12px;
  color: #777;
  text-align: center;
}

@media screen and (max-width: 450px) {
  .login-box {
    width: 90%;
    padding: 20px;
    box-shadow: 0 0 20px;
    position: absolute;
    left: 5%;
    top: 30%;
  }

  .codigo-input {
    width: 40px;
    height: 45px;
  }
}
