body{
    background-color: #2c3e50;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.container{
    display: flex;
    flex-direction: column;
    margin: auto;
    text-align: center;
    width: 400px;
    height: auto;
}

.sub-title{
    margin-top: -20px;
    font-size: 14px;
    font-weight: 400;
}

.card-form{
    margin: auto;
    width: 80%;
}
input, select, .btn{
    width: 100%;
    box-sizing: border-box;
    height: 35px;
    outline: none;
    margin: 4px 0;
    border-radius: 10px;
    border: none;
    padding: 10px;
}

.btn{
    color: #fff;
    font-weight: 600;
    height: 35px;
    background-color: #e67e22;
    transition: 0.3s ease;
}

.btn:hover{
    background-color: #d35400;
    cursor: pointer;
}

.error{
  font-size: 12px;
  background-color: coral;
  padding: 10px;
  width: 300px;
  margin: auto;
  border-radius: 5px;
  margin-top: 5px;
}

.clima{
    margin-top: 0px;
    font-size: 50px;
    font-weight: 400;
}

/*preloader*/
.spinner {
    width: 40px;
    height: 40px;
  
    position: relative;
    margin: 50px auto;
  }
  
  .double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
  }
  
  .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
  }
  
  @-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes sk-bounce {
    0%, 100% { 
      transform: scale(0.0);
      -webkit-transform: scale(0.0);
    } 50% { 
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
    }
  }