.btn {
    background-color: rgba(0,88,72,0.8);
    color: white;
    border-style: none;
    border-radius: 7px;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 14px 20px;
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center;
}

.btn:hover {
    background-color: rgb(16,50,142);
}

.btn:disabled {
    background-color: #ccc;
}

.bg-negro {
    background-color: #000;
}

.negro {
    color: #000;
}

.bg-gris {
    background-color: rgb(190,190,190);
}

.gris {
    color: rgb(190,190,190);
}

.bg-verde {
    background-color: rgb(0,88,72);
}

.verde {
    color: rgb(0,88,72);
}

.bg-azul {
    background-color: rgb(16,50,142);
}

.azul {
    color: rgb(16,50,142);
}

.bg-blanco {
    background-color: #fff;
}

.blanco {
    color: #fff;
}

.color-base-1 {
    color: rgb(16,50,142) !important;
}

.color-base-2 {
    color: rgb(0,88,72) !important;
}

input[type="text"] {
    background-color: #fff;
    border-color: #ccc;
    border-style: solid;
    border-width: 1px;
    height: 50px;
    padding: 10px;
    font-size: 1rem;
  }