html, body {
    font-family: Ubuntu, sans-serif;
    margin: 0;
    height: 100%;
    min-width: 300px;
    padding: 0;
    overflow: hidden;
}

a {
    text-decoration: none;
}

/* LOADER */
.lds-ring {
  display: none;
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  top: calc(50% - 32px);
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #F2845C;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #F2845C transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* //LOADER */


section {
    width: 260px;
    display: block;
    overflow: hidden;
    top: calc(50% - 140px);
    left: calc(50% - 150px);
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    padding: 20px;
    border-radius: 6px;
}

h1 {
    color: #FFF;
    font-size: 22px;
    margin: 0 0 20px;
}

p {
    color: #CCC;
    font-size: 12px;
    margin: 0 5px 5px;
}

input {
    background-color: transparent;
    padding: 8px;
    border: 1px solid #F2845C;
    font-size: 14px;
    color: #FFF;
    margin: 0 0 20px;
    width: calc(100% - 18px);
    border-radius: 6px;
}

button {
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  background-color: #F2845C;
  color: #FFF;
  border: none;
  transition-duration: .7s;
}

button:hover {
  background-color: chocolate;
  cursor: pointer;
}

#creditos {
  display: block;
  bottom: 20px;
  right: 20px;
  position: fixed;
  color: #FFF;
  font-size: 12px;
  text-align: right;
  text-shadow: 2px 2px 4px #000;
}