/* estilos.css */
.btn-primary {
    background-color: #00afff;
    color: #ffffff;
    width: 100%;
    &:hover {
        background-color: #0000ff;
    }
}
form{
    line-height: 2;
}
.flag {
    width: 32px;
    height: 32px;
    margin: 0 5px;
}
.cita {
    text-align: center;
    margin-top: 50px;
}

.texto-cita {
    font-size: 20px;
    font-style: italic;
}

.autor-cita {
    font-size: 16px;
    font-weight: bold;
}
#enviar {
    background-color: #00afff; /* color cuando está deshabilitado */
}

#enviar.activo {
    background-color: #007bff; /* color cuando está habilitado */
}