* {
  font-family: "Poppins", sans-serif;
}

:root{
  --primary: #004AAD;
  --secondary: #50B948;
}

body {
  background-color: #f4f4f4;
  letter-spacing: 0.5px;
  outline: none;
  border: none;
}

@media (max-width: 480px) {
  body {
    background-color: #ffff;
  }
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
  color: #e8e8e8;
  flex-direction: column;
}

.center_item {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.logo_belluno {
  margin-top: 10px !important;
  padding-bottom: 15px !important;
}

label {
  display: block;
  margin-top: 15px;
  font-size: 13px;
  color: #080710;
  font-weight: 500;
}

button {
  border: none;
  width: 100%;
  background-color: #e8e8e8;
  color: #080710 !important;
  padding: 10px 0;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  background-color: #1e40ae;
  color: #f4f4f4 !important;
}

button:hover {
  transition: 0.2s ease-in-out;
}

form {
  background-color: #ffff;
  width: 35rem;
  border-radius: 10px;
  padding: 25px;
  box-sizing: border-box;
}

img.apps_img {
  width: 150px;
}

.links {
  margin-top: 15px;
  display: flex;
  justify-content: center; 
}

a {
  color: #e8e8e8;
}

a:hover {
  color: #1e40ae;
}

input {
  display: block;
  height: 40px;
  width: 100%;
  border-radius: 3px;
  padding: 0 10px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 300;
  border: none;
  outline: none;
}

.glyphicon {
  top: 7rem;
  left: 27rem;
  color: #080710;
}

.help-block {
  color: #080710 !important;
  font-size: 10px;
}

.form-group {
  margin: 0;
}

.mt-10 {
  margin-top: 2rem;
}

.mb-10 {
  margin-bottom: 10px;
}

#resultado > button {
  display: none;
}

#resultado {
  color: #080710;
}

#resultado > .alert-dismissible {
  padding: 1rem;
}

input {
  background-color: #f3f4f6;
  color: black;
}

input:focus {
  border: solid #1e40ae 2px;
  background: #fff;
}

a {
  color: #4682b4;
}

.auth {
  color: #303030;
}

.required {
  color: #f87171;
}

.fade-in {
  animation: fadeIn 0.75s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.font-color-black-gray {
  color: #303030;
}

.fa-spinner {
  --spinner-color: black;
  aspect-ratio: 1/1;
  animation-name: spin;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.fa-spinner {
  border-top-color: transparent;
  animation-duration: 1s;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.btn:active {
  transform: translateY(1px) !important;
}
